@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:wght@400&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fdf5f1;
}

#wrapper {
    display: grid;
    min-height: 100vh;
    grid-template-rows: min-content min-content auto min-content;
}

#logo-banner {
    background-color: #803300;
    text-align: center;
}

#logo-top {
    height: 70px;
    width: 72px;
    padding: 5px;
}

#navbar {
    position: sticky;
    top: 0px;
    background-color: #803300;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

#main {
    padding: 10px;
}

#footer {
    background-color: #803300;
    display: grid;
    height: min-content;
    padding: 5px;
    color: #d3d3cb;
    grid-gap: 5px;
    align-items: center;
}

#footer a {
    padding: 5px;
}

a {
    color: black;
}

h1 {
    text-align: center;
}

.nav-items a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.nav-dropdown {
    float: left;
    overflow: hidden;
}

.nav-items button {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.nav-items a:hover, .nav-dropdown:hover button, .nav-collapse-button:hover {
    background-color: black;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.nav-dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.nav-dropdown-content a:hover {
    background-color: #ddd;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-collapse-button {
    display: none;
}

.text-container {
    max-width: 1600px;
    margin: auto;
    padding: 15px;
}

.text-container img {
    max-width: 200px;
    max-height: 200px;
    margin: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    z-index: 0;
}


.no-shadow {
    box-shadow: none!important;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.4));
}


@media screen and (max-width: 600px) {
    #footer {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .text-container img {
        position: relative;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

@media screen and (min-width: 600px) {
    #footer {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    #footer-text {
        float: right;
    }
    .text-img-left {
        float: left !important;
    }
}

@media screen and (max-width: 905px) {
    .nav-item {
        display: none;
    }
    .nav-collapse-button {
        display: block;
    }
}

@media screen and (min-width: 905px) {
    .nav-item {
        display: block!important;
    }
}