@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Thin.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 100; 
}
@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-ExtraLight.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 200; 
}
@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Light.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 300; 
}
@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Regular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}
@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Bold.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: bold; 
}
header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    background-color: white;
    position: fixed;
    top: 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
header .logo {
    height: 40px;
    margin: auto 25px;
    user-select: none;
    cursor: pointer;
}
header .right_block {
    display: flex;
    flex-direction: column;
    margin: 15px 25px;
    grid-gap: 15px;
}
header .right_block .login_btn {
    font: 16px Inter;
    color: rgba(0, 0, 0, 0.8);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 30px;
    text-align: center;
    user-select: none;
    cursor: pointer;
}
header .right_block .user_and_arrow {
    display: flex;
    justify-content: end;
    grid-gap: 10px;
    height: 40px;
    align-items: center;
}
.avatar_thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.user_name {
    font: 16px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
}
.header_menu {
    display: none;
    flex-direction: column;
    margin-left: auto;
    width: min-content;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 3px solid rgb(245, 245, 245);
    border-top-width: 2px;
}
.header_menu a {
    height: min-content;
    text-wrap: nowrap;
    font: 16px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    padding: 8px 18px;
    background-color: white;
    user-select: none;
    cursor: pointer;
    transition: background-color .4s;
}
.header_menu a:hover {
    background-color: rgb(250, 250, 250);
}
.artists_btn, .administration_btn, .support_btn {
    border-top: 2px solid rgb(245, 245, 245);
}
.exit_btn {
    border-top: 2px solid rgb(245, 245, 245);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}