#hamburgerMenu {
    background-color: #161F72E5;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    transform: translateY(-100vh);
}

#hamburgerMenu a {
    transition: margin 0.2s ease-out;
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #dbebff;
}

.menu-text a {
    display: block;
    font-size: 50px;
    line-height: 140%;
    color: #dbebff;
    text-decoration: none;
    margin-right: 0px;
    cursor: pointer;
}

.menu-text a:hover {
    color: #ffd91a;
    margin-right: -25px;
}

.menu-text a:hover:before {
    background-image: url("../img/UFO_small.png");
    background-repeat: no-repeat;
    background-size:50px;
    background-position:bottom;
    display: inline-block;
    width: 50px;
    height: 40px;
    content:"";
    margin-right: 10px;
}

#social {
    margin: 50px 0 0 0;
}

#social a {
    padding: 0 10px;
    color: #dbebff;
    text-decoration: none;
}

#social a:hover {
    color:#ffd91a;
}

#credit {
    margin-top: 20px;
}

#credit p {
    font-size: 0.8em;
    line-height: 30%;
    color: #8aade7;
}

#duck {
    height: 145px;
}

#duckEye {
    position: absolute;
    bottom: 52px;
    right: 31px;
    width: 15px;
    aspect-ratio: 1;
}

#duckWince {
    position: absolute;
    bottom: 40px;
    right: 22px;
    width: 35px;
    aspect-ratio: 1;
    opacity: 0;
}

#duckContainer {
    position: absolute;
    width: 131px;
    left: 180px;
    transform: translateY(-100%);
}

.cornerIcon {
    position: fixed;
    top: -20px;
    opacity: 0;

    width: 100vw;
    display: flex;
    justify-content: flex-end;
}

.cornerIcon a:hover {
    color:#ffd91a;
}



#muteIcon {
    position: fixed;
    right: 19px;
    bottom: 15px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}
#muteIcon img {
    width: 40px;
    aspect-ratio: 1;
}

#hamburgerIconLottie {
    position: relative;
    cursor: pointer;
    width: 120px;
    height: 120px;
    right: -10px;
}

/* mobile size */

@media (max-width: 1000px) {

    .menu-text a {
        font-size: 30px;
        line-height: 160%;
    }

    .menu-text a:hover {
        font-size:32px;
    }

    .menu-text a:hover:before {
        background-size:40px;
        width: 40px;
        height: 30px;
    }

    #duckContainer {
        left: 40px;
    }

}