
#mobileLinksContainer {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    user-select: none;
    display: flex;
    background-color: rgba(255, 255, 255, 1);
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.45s linear(0, 0.02 2.1%, 0.081 4.7%, 0.467 15.7%, 0.645, 0.778 28.5%, 0.872 35.8%,
            0.909 40.1%, 0.938 44.9%, 0.977 56.5%, 0.994 72.3%, 1),

        visibility 0.45s linear(0, 0.02 2.1%, 0.081 4.7%, 0.467 15.7%, 0.645, 0.778 28.5%, 0.872 35.8%,
            0.909 40.1%, 0.938 44.9%, 0.977 56.5%, 0.994 72.3%, 1),

        max-height 0.45s linear(0, 0.02 2.1%, 0.081 4.7%, 0.467 15.7%, 0.645, 0.778 28.5%, 0.872 35.8%,
            0.909 40.1%, 0.938 44.9%, 0.977 56.5%, 0.994 72.3%, 1);
    z-index: 99999;
}

#mobileLinksContainer.active {
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
}

#headerMobileLinks {
    display: flex;
    flex-direction: column;
    margin-right: 22pt;
    margin-left: 22pt;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin-top: 64pt;
}

#mobileLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    width: 100vw;
    box-sizing: border-box;
}

.headerMobileLink:hover,
.headerMobileLinkIndent:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.1);
    scale: 1.02;
}

.headerMobileLink:active,
.headerMobileLinkIndent:active {
    background-color: rgba(0, 0, 0, 0.2);
    scale: 0.95;
}

.headerMobileLink {
    padding: 0 12pt;
    font-size: 1.2em;
    font-weight: 400;
    text-decoration: none;
    color: black;
    opacity: 0.8;
    transition: opacity 0.3s, scale 0.3s, background-color 0.3s;
    border-radius: 18px;
    box-sizing: border-box;
    margin: 4px;
    width: 100%;
}

.headerMobileLinkIndent {
    padding: 0 12pt;
    font-size: 1.2em;
    font-weight: 400;
    text-decoration: none;
    color: black;
    opacity: 0.8;
    transition: opacity 0.3s, scale 0.3s, background-color 0.3s;
    border-radius: 18px;
    margin: 4px;
    /* width: 100%; */
    box-sizing: border-box;
    margin-left: 24pt;
}

.headerMobileLink,
.headerMobileLinkIndent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8pt;
}


.headerMobileLinkIcon {
    width: 20pt;
    height: 20pt;
    filter: invert(100%);
    cursor: url("img/hand cursor.svg"), auto;
}



@media (max-width: 800px) {

    #headerMobileLinks {
        display: flex;
        flex-direction: column;
        margin-right: 12pt;
        margin-left: 12pt;
        width: calc(100% - 24pt);
        height: 100%;
        box-sizing: border-box;
        margin-top: 64pt;
    }

}