* {
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 400px;    
}

body {
    background-image: url("/assets/images/background.jpg");
    background-size: cover;
    font-family: 'Inter', sans-serif;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    min-width: 360px;
    min-height: max(100vh, 900px);
    overflow-y: auto;
    background-color: #000;
}

#container {
    display: flex;
    height: auto;
    width: 100%;
    overflow-y: auto;
}

#left-side, #right-side {
    min-height: max(100vh, 900px);
    width: 100%;
}

#right-side {
    position: relative;
    line-height: 1.5rem;
    word-spacing: 0.1rem;
    padding-top: 6rem;
    z-index: 1; 
}

.section-header {
    display: none;
}

::-webkit-scrollbar {
    width: 0.3rem;
    height: 0.3rem;
}

::-webkit-scrollbar-track {
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(40, 98, 190);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(7, 28, 134);
}