/* Basic that affects all pages */

#header {
    background-image:url("imgs/eats.jpg");
    background-size:10%;
    height:200px;
    justify-content:center;
    
}


#content {
    width:100%;
}

#footer {
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
    height:75px;
    text-align: center;
}

#footer a {
    display:inline-block;
    padding:16px;
    text-decoration:none;
}


/* Navigation Bar styling */
/* The div that holds the navigation bar */
#top_nav_bar {
    display:flex;
    justify-content:center;
    margin: 0 auto;
    width: auto;
    left:0;
    top:0;
}

/* The UL around the list */
#navigationbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;    
}

/* Each list item in the topnav and the link */

.navitem {
    display:inline-block;
    border:none;
}

/* every top level link in the topnav */
.topnav {

    display: inline-block;
    padding: 16px;
    text-decoration: none;
    z-index:1000;
    border:none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown {
    position: relative;
    display: flex;
    background-color: inherit;    
}


.dropdown-content {
    top:55px;
    display: none;
    position: fixed;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding-inline-start:0;
    list-style-type:none;
    width:auto;
}

.dropdown-content a{
    z-index:1001;
    text-align:left;
    display:block;
    text-decoration:none;

}


.dropdown:hover  .dropdown-content {
    display: inline-block;

}

.subnav{
    width:-webkit-fill-available;
    padding: 16px;    
}

/* Theme Selector */
#themeSelector {
    float:right;
}

/* Text bodies that will apply to base level pages */

#doc_body {
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

#leftcolumn {

    width:10%;
    float:left;
    height:500px;
    padding:0;
}
#rightcolumn {

    width:10%;
    float:left;
    height:500px;
    opadding:0;
}

#main {
    /* justify-content: center; */
    width:100% !important;
    margin: auto;
    display: table;
    /* float:left; */
    /* padding-left:22%; */
    /* padding-right:22%;  */
    opacity:1;
    z-index:-1;
}

/* Home Page Images */

.home_section {
    width:100%;
    display:grid;
    justify-content: center;
}

.lang_header {
    text-align:center;
}

.lang_div {
    float:left;
}

.lang_img {
    width: 50px;
    border-radius:8px;
    margin:2%;
}

/* Gallery page specific styling */
 
.gallery_image {
    width: 200px;
    height: 266px;
    float:left;
    border-radius:8px;
    margin:2%;
}
.gallery_image:hover {
    width: 200px;
    float:left;
    box-shadow: 0 5px 15px #999999;
}

.enlarged_image {
    border: none;
    /* vertical-align: middle; */
    /* aspect-ratio: auto 1024 / 1536; */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    border-radius:8px;
}
.gallery_next_previous {
    height: 20px;
    width: 300px;
}

#img_button_container {
    text-align: center;
}
#full_img_btn {
    text-align: center;
}

#enlarged_picture_layout {
    
}

#display {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 10px;
 /*   background-image: url("imgs/lookip.pdf");*/
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 100%;
}


/* Engine page specific styling */

.result {
    display:inline-block;
    padding:16px;
    margin:6px;
    text-decoration:none;
    color:#000;
    width:70%;
}

.result:hover {
    color:#222;
}
