* {
    scroll-behavior: smooth;
    font-family: 'inter', sans-serif;
    font-style: normal;
    margin: 0;
}

.display-position{
    display: flex;
    height: 100%;
    max-width: 1208px;
}

.bg-color{
    background-color: #091931;
    color: white !important;
}

.bg-color img{
    filter: brightness(0) invert(1);
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.d_none {
    display: none !important;
}

.left-side {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 232px;
    background-color: #2A3647;
    position: relative;
}

.left-side a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #CDCDCD;
    height: 46px;
}

.join-logo {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
}

#navbar {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

nav a {
    padding-left: 25%;
}

nav a:hover {
    background-color: #2A3D59
}

footer {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 64px;
    width: 232px;
}

footer a{
    padding-left: 25%;
}

footer a:hover{
    color: #29ABE2;
}

.right-side {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    padding: 0 40px 0 100px;
    background-color: #FFFFFF;
    max-width: 1440px;
    position: relative;
}

#logo-black-header {
    display: none;
    width: 32px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badges-header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 43px;
    border-radius: 45px;
    border: 3px solid #2A3647;
    color: #29ABE2;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.badges-header:hover{
    background-color: rgba(12, 46, 98, 0.05);
}

#log-out-menu{
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    width: 150px;
    height: 158px;
    background-color: #2A3647;
    color: #CDCDCD;
    border-radius: 20px 0 20px 20px;
    box-shadow: 0px 0px 4px 0px #0000001A;
    top: 96px;
    right: 2%;
}

#log-out-menu.active {
    display: flex;
    z-index: 1000;
}

#log-out-menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 32px;
    border-radius: 8px;
    text-decoration: none;
    color: #CDCDCD;
}

#log-out-menu a:hover{
    background-color: #2A3D59;
    color: white;
}

.help {
    width: 32px !important;
    height: 32px !important;
}

.help:hover {
    transform: scale(1.1);
}

#help {
    display: none !important;
}

.content {
    flex: 1;
    width: 100%;
    background-color: #f5f6f7;
    background: linear-gradient(0deg, rgba(245, 246, 247, 1) 99%, rgb(223, 224, 225) 100%);
    overflow-y: auto;
    scrollbar-width: none;
}

.content::-webkit-scrollbar {
    display: none;
}

#startpage-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #f5f6f7;
}

.startpage-logo {
    width: 20%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: moveLogo 10s ease-in-out forwards;
}

@keyframes moveLogo {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.75);
    }
    100% {
        top: 0;
        left: 0;
        transform: translate(0, 0) scale(0.5);
    }
}