.logo_container {
    display: block;
    position: relative;
    height: 8vh;
    background-color: white;
}

.logo {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo img {
    height: 70%;
}

.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu {
    --menu-background: #1A1A1A;
    --menu-icon: rgba(255, 255, 255, 0.7);
    --menu-icon-hover: rgba(255, 255, 255, 0.9);

    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 2vh 0;
    bottom: 0;
    background-color: var(--menu-background);
    color: var(--menu-icon);
    z-index: 2000;
}

.menu ul {
    display: flex;
    width: 60%;
    height: 4vh;
    justify-content: space-between;
    list-style-type: none;
    margin-block: 0;
    padding-inline: 0;
}

.menu svg {
    width: 100%;
    height: 100%;
    max-height: 80px;
    min-height: 25px;
}

.menu a {
    position: relative;
    font-size: 2vh;
}

.menu li:active a:after {
    position: absolute;
    content: '●';
    font-size: 1.5vh;
    bottom: -1.3vh;
    left: 40%;
}

.menu li[active ='true'] a:after {
    position: absolute;
    content: '●';
    font-size: 1vh;
    bottom: -1.3vh;
    left: 40%;
}

.menu_text {
    display: none;
}

@media screen and (min-aspect-ratio: 8/9) {

    ::-webkit-scrollbar {
        height: 13px;
        width: 19px;
        background: white;
    }

    ::-webkit-scrollbar-thumb {
        background: #1A1A1A;
        border-radius: 20px;
        border: 3px rgba(0, 0, 0, 0) solid;
        background-clip: padding-box;
    }

    ::-webkit-scrollbar-track {
        margin-left: 5px;
        border-radius: 20px;
    }

    .menu {
        --menu-icon: #1A1A1A;
        display: flex;
        align-items: center;
        top: 0;
        height: 100%;
        padding: 0;
        bottom: auto;
        background-color: white;
    }

    .menu ul {
        width: 45vh;
        height: 3vh;
    }

    .menu_text {
        display: block;
        font-weight: bold;
    }

    .menu ul li a {
        display: flex;
        gap: 1vh;
        align-items: center;
        padding: 0 1vh;
    }

    .menu ul li a svg {
        height: 2vh;
    }

    .menu li[active ='true'] a:after {
        content: '';
        width: 100%;
        height: .25vh;
        border-radius: 1vh;
        background-color: #1A1A1A;
        bottom: -.8vh;
        left: 0;
    }

    .menu li:active a:after {
        content: '';
        width: 100%;
        height: .25vh;
        border-radius: 1vh;
        background-color: #1A1A1A;
        bottom: -.8vh;
        left: 0;
    }

    .logo {
        justify-content: left;
        padding-left: 2vh;
    }

    .top {
        position: relative;
    }

    .logo_container {
        z-index: 2001;
        background-color: transparent;
        width: 15%;
    }
}
