@font-face {
    font-family: 'ZenDotsKir';
    src: url('../fonts/ZenDotsKir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.webLogo{
    font-family: "ZenDotsKir";
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
}

html{
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(16, 16, 16);
    color: #ffffff;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 50px;
    background-color: #212121;
    width: 100%;
    text-decoration: none;
    padding-left: 20px;
}

.nav-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 600px;
    height: 50px;
    margin-left: 30px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 600px;
    height: 24px;
}

.nav-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    user-select: none;
    transition: color .5s ease;
}

.lang-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
        background: none; 
    border: none; 
    padding: 0; 
    margin: 0;
    cursor: pointer; 
    font: inherit; 
    color: inherit;
}

.lang-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 27px;
    border: 2px solid;
    border-radius: 5px;

}

.spacer {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 50px;
    width: 100%;
}

.account-text {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 287px;
    height: 50px;
}

.avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-left: 20px;
}

.avatar-nav {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #ffffff;
    margin-right: 5px;
}

.a-button {
    user-select: none;
    text-decoration: none;
    color: #ffffff;
}

#link-home:hover{
    color: #48c072;
    transition: color .5s ease;
}

#link-education:hover{
    color: #c04848;
    transition: color .5s ease;
}

#link-library:hover{
    color: #bac048;
    transition: color .5s ease;
}

#link-timer:hover{
    color: #48a4c0;
    transition: color .5s ease;
}

#link-stats:hover{
    color: #aa48c0;
    transition: color .5s ease;
}

#link-about-us:hover{
    color: #ffad21;
    transition: color .5s ease;
}

#link-account:hover{
    color: #484cc0;
    transition: color .5s ease;
}

.avatar{
    height: 40px;
    width: 40px;
    border-radius: 25px;
}

.burger-menu{
    display: none;
}




.navbar-mobile {
    display: none;

}

@media (max-width: 768px) {
 .desktop{
    display: none;
 }
 .navbar-mobile{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 50px;
    background-color: #212121;
    width: 100%;
    text-decoration: none;
    position: absolute;
 }
 .navbar{
    display: none;
 }


 .burger{
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: transparent;
 }

 .burger span{
    height: 4px;
    width: 20px;
    background-color: white;
    border-radius: 10px;
 }

 .burger-menu{
    position: absolute;
    z-index: 100;
    top: 50px;
    background-color: #212121;
    height: fit-content;
    width: 100%;
    justify-content: center;
 }

 .nav-links-burger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 5px 0 ;
    align-items: center;
 }
 .content{
    margin-top: 50px
 }
 .avatar-container-mobile{
    height: 40px;
    width: 40px;
 }
}