/*!* Add a black background color to the top navigation *!*/
/*.topnav {*/
/*    background-color: #000000;*/
/*    overflow: hidden;*/
/*    font-size: 14px;*/
/*    font-family: arial;*/
/*    height: 80px;*/
/*    width: 960px;*/
/*    position: relative;*/
/*    display: block;*/
/*}*/

/*!* Style the links inside the navigation bar *!*/
/*.topnav a {*/
/*    !*float: left;*!*/
/*    !*display: block;*!*/
/*    !*color: #f2f2f2;*!*/
/*    !*text-align: center;*!*/
/*    !*padding: 14px 16px;*!*/
/*    !*text-decoration: none;*!*/
/*    !*font-size: 17px;*!*/

/*    background-color: transparent;*/
/*    background-image: none;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-attachment: scroll;*/
/*    border-top: 0;*/
/*    border-left: 0;*/
/*    border-right: 0;*/
/*    border-bottom: 0;*/
/*    border-top-right-radius: 4px;*/
/*    border-bottom-right-radius: 4px;*/
/*    border-bottom-left-radius: 4px;*/
/*    border-top-left-radius: 4px;*/
/*    box-sizing: border-box;*/
/*    color: #fff;*/
/*    padding-top: 18px;*/
/*    padding-right: 8px;*/
/*    padding-bottom: 8px;*/
/*    padding-left: 8px;*/
/*    display: block;*/
/*    font-family: lato;*/
/*    font-size: 14px;*/
/*    font-weight: 300;*/
/*    font-style: normal;*/
/*    line-height: 1.3;*/
/*    overflow: hidden;*/
/*    !* position: absolute; *!*/
/*    !*width: 84px;*!*/
/*    height: 54px;*/
/*    text-decoration: none;*/
/*    z-index: 100007;*/
/*    text-align: center;*/
/*    text-align-last: center;*/
/*    top: 15px;*/
/*    !* left: 656.00003051758px; *!*/
/*    display: block;*/
/*    float: right;*/
/*    position: relative;*/
/*    margin-left: 5px;*/
/*    margin-right: 5px;*/


/*}*/

/*!* Change the color of links on hover *!*/
/*.topnav a:hover {*/
/*    background-color: #333333;*/
/*}*/

/*!* Add an active class to highlight the current page *!*/
/*.topnav a.active {*/
/*    !*background-color: #4CAF50;*!*/
/*    !*color: white;*!*/
/*}*/

/*!* Hide the link that should open and close the topnav on small screens *!*/
/*.topnav .icon {*/
/*    display: none;*/
/*}*/

/*!* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) *!*/
/*@media screen and (max-width: 600px) {*/
/*    .topnav a:not(:first-child) {display: none;}*/
/*    .topnav a.icon {*/
/*        float: right;*/
/*        display: block;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 600px) {*/
/*    .topnav {*/
/*        width: 100%;*/
/*    }*/
/*    .topnav a {*/
/*        clear: right;*/
/*    }*/
/*    #cemLcoPdx3GrXaTsJd7DOBsBt4pTTE0O {*/
/*        clear: both;*/
/*        margin: auto;*/
/*    }*/
/*}*/

/*!* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) *!*/
/*@media screen and (max-width: 600px) {*/
/*    .topnav.responsive {position: relative;}*/
/*    .topnav.responsive a.icon {*/
/*        position: absolute;*/
/*        right: 0;*/
/*        top: 0;*/
/*    }*/
/*    .topnav.responsive a {*/
/*        float: right;*/
/*        display: block;*/
/*        text-align: left;*/
/*        width: 100%;*/
/*    }*/
/*}*/


:root {
    --navbar-bg-color: hsl(0, 0%, 15%);
    --navbar-text-color: hsl(0, 0%, 85%);
    --navbar-text-color-focus: white;
    --navbar-bg-contrast: hsl(0, 0%, 25%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    font-family: Lato;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#navbar {
    z-index: 200000;
    --navbar-height: 64px;
    position: fixed;
    height: var(--navbar-height);
    background-color: var(--navbar-bg-color);
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.navbar-item {
    margin: 0.4em;
    width: 100%;
    white-space: nowrap;
}

.home-link,
.navbar-link {
    color: var(--navbar-text-color);
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    transition: background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
    color: var(--navbar-text-color-focus);
}

.navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
}

.navbar-link:focus,
.navbar-link:hover {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
}

/*.navbar-logo {*/
/*    background-color: var(--navbar-text-color-focus);*/
/*    border-radius: 50%;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    margin-right: 0.5em;*/
/*}*/

.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    transition: background-color 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
    background-color: var(--navbar-text-color);
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
    background-color: var(--navbar-text-color-focus);
}

#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
}

.navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    transition: opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
}

#navbar.opened .navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
}

.navbar-links {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: 1.4rem;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#navbar.opened .navbar-links {
    padding: 1em;
    max-height: none;
}

@media screen and (min-width: 700px) {
    .navbar-toggle {
        display: none;
    }

    #navbar .navbar-menu,
    #navbar.opened .navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: block;
        height: 100%;
    }

    #navbar .navbar-links,
    #navbar.opened .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        list-style-type: none;
        max-height: max-content;
        width: 100%;
        height: 100%;
    }

    #navbar .navbar-link:last-child {
        margin-right: 0;
    }
}