* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Inter', sans-serif;
    scrollbar-width: thin;
}

header {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0 rgb(0, 0, 0, 0.1);
    margin-bottom: 4px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    padding-right: 40px;
    padding-left: 348px;
}

.login-button-none{
    display: none;
}

.menu-login-button{
    width: 100%;
    height: 46px;
    background-color: #2A3647;
    border: none;
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 56px;
    text-decoration: none;
    cursor: pointer;
}

.menu-login-button:hover {
    background-color: #2A3D59;
}

.text-content-container{
    position: absolute;
    height: calc(100% - 10%);
    top: 96px;
    left: 232px;
    overflow: auto;
    word-wrap: break-word;
}

.text-content{
    margin: 110px 96px 64px 96px;
}

.text-nav{
    padding: 16px 0;
}

a {
    word-break: break-word;
    text-decoration: none;
    color: #29ABE2;
}

h1{
    font-size: 61px;
    margin-bottom: 35px;
}

h2{
    font-size: 27px;
    margin-bottom: 10px;
}

h3{
    font-size: 23;
    margin-bottom: 10px;
}

p{
    font-size: 16px;
    margin-bottom: 5px;
}

.bigger-area{
    margin-bottom: 30px;
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a7a7a;
    cursor: pointer;
}

@media (min-width: 1920px) {
    .text-content-container {
        height: calc(100dvh - 96px);
        width: calc(1920px - 232px);
    }

    header {
        justify-content: flex-start;
    }

    nav {
        width: 1920px;
    }
}

@media (max-width: 1040px){
    nav {
        padding: 16px;
    }

    .text-content-container{
        top: 80px;
        left: 0;
        height: calc(100dvh - 160px);
    }

    .text-content{
        margin: 48px 16px;
    }

    .menu-login-button {
        padding: 8px 0;
    }
}

@media (max-width: 428px) {
    .menu-login-button {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .menu-login-button {
        gap: 4px;
    }
}