@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');


.fixed-nav-bar {
    top: 0;
    max-width: 100vw;
    margin: auto;

    letter-spacing: 2px;
    font-size: 22px;
    left: 0;
    right: 0;
    min-height: 10vh;
    padding: 0 25px;
    box-sizing: border-box;
    background-color: #1c1c1c;
    -webkit-backdrop-filter: var(--background-filter);
    backdrop-filter: var(--background-filter);
    transition: 0.35s ease;
    border-radius: 5px;
    width: fill;
    margin-top: 15px;
    z-index: 100;
    position: absolute;
}

.fixed-nav-bar .icon:hover {
    transform: translateY(-55%) scale(1.03);
    font-weight: 800;
}

.fixed-nav-bar .icon {
    position: absolute;
    float: left;
    /* text-transform: uppercase; */
    font-size: 30px;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    color: var(--text);
    font-weight: 600;
    margin-left: 5px;
    font-style: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 0.5vh;
    width: 0.5vh;
    top: 18%;
}

.fixed-nav-bar-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* text-transform: uppercase; */
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    right: 2%;
}

.fixed-nav-bar-right .navbar-link {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    margin-left: 10px;
    /* text-transform: uppercase; */
    font-size: 2.5vh;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    right: 2%;
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    transform: translateX(0%);
}


.fixed-nav-bar-right .navbar-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

@media (orientation: portrait) {
    .fixed-nav-bar-right .navbar-link {
        margin-left: 10px;
        /* text-transform: uppercase; */
        font-size: 2.5vw;
        cursor: pointer;
        color: #fff;
        font-weight: 800;
        right: 2%;
        font-family: 'Exo 2', sans-serif;
        font-style: normal;
        text-decoration: none;
        transition: all 0.2s ease;
        transform: translateX(0%);
    }
    .fixed-nav-bar-right .navbar-link:hover {
        cursor: pointer;
        font-weight: 800;
        font-family: 'Exo 2', sans-serif;
        font-style: normal;
        font-size: 3vw;
        transform: translateX(-20%);
    }
}

.fixed-nav-bar-right .navbar-link:hover {
    cursor: pointer;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    font-size: 3vh;
    transform: translateX(-20%);
}

.navbar-icon {
    color: #fff !important;
    margin-right: 5px;
    transition: all 0.2s ease;
}

.navbar-link {
    margin-right: 5px;
    font-size: 3vh;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'48;
}

.navbar-link:hover>.settings-icon {
    animation: spin 0.5s;
    animation-timing-function: cubic-bezier(0, 1.04, 0.91, 0.99);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
 


#HYimg {
    min-width: 4vw;
   display: flex;
   flex-direction: row;
   align-items: center;
}

@media (min-width: 1000px) {
    #HYimg {
        width: 3.5vw; /* Adjust as needed */
    }
}

@media (max-width: 1200px) {
    #HYimg {
        width: 3.5vw; /* Adjust as needed */
    }
}

@media (max-width: 768px) {
    #HYimg {
        width: 3vw; /* Adjust as needed */
    }
}

@media (orientation: portrait) {
    #HYimg {
        width: 4vw;
        padding-top: 10vh;
        margin-bottom: 1vh;
    }
}


@media only screen and (min-width: 700px) {
    .fixed-nav-bar {
        display: block !important;
    }
    header {
        display: none;
    }

}