@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.logo {
    height: 32px;
    width: auto !important;
    z-index: 3;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Icon Container for Hamburger and Close Button */
.icon-container {
    position: absolute;
    top: 16px;
    right: 0px;
    z-index: 4;
}

/* Hamburger Button */
.hamburger {
    font-size: 32px;
    cursor: pointer;
    z-index: 2;
    color: white;
    position: relative;
    right: 0;
    top: -32px;
}

/* Overlay Menu */
.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111111;
    opacity: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Close Button */
.close-btn {
    cursor: pointer;
    color: white;
    display: none;
    position: absolute;
    font-size: 32px;
    top: 24px;
    right: 24px;
}

/* Overlay Content */
.overlay-content {
    max-width: 1200px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 24px;
}

/* Overlay active state */
.overlay.active {
    display: flex;
}

.overlay.active .close-btn {
    display: block;
}

/* Hide Hamburger when Overlay is Active */
.overlay.active ~ * .hamburger {
    display: none;
}

/* Hide main content when overlay is active */
.main-content,
.bottom-content {
    z-index: 1;
}

.overlay.active ~ * .main-content,
.overlay.active ~ * .bottom-content {
    visibility: hidden;
}

/* Links in Overlay */
.overlay-content a {
    color: white;
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
    text-decoration: none;
    text-align: center;
}

.overlay-content .small {
    font-size: 16px;
}

@media (max-width: 1200px) {
 
}
