
.menu_container {
    display: inline-block;
    cursor: pointer;
    padding-top: 10px;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
    z-index: 1;
    position: static;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
    background-color: white;
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
    background-color: white;
}

.change {
    position: fixed;
    z-index: 2;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 0px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #226666;
    opacity: 0.95;
    z-index: 2;
    cursor: pointer;

    transition: height 0.5s;
}

#text{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    opacity: 0.0;
    transition: opacity 0.5s;
}

#text h1 {
    font-size: 4vh;
    line-height: 1.8;
}

#text a {
    color: inherit;
    text-decoration: none;
}

#text a:hover {
    text-decoration: underline;
}

.disable_links {
    pointer-events: none;
    cursor: default;
}