body {
    margin: 0;
    padding: 0;
    font-family: 'Garamond Pro', serif;
    background-color: #1a1a1a; 
    color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.about-title {
    position: absolute;
    top: 120px; 
    left: 20px; 
    font-size: 3rem; 
    color: #ffffff; 
    margin: 0;
    letter-spacing: 2px; 
}


.container {
    display: flex;
    width: 100%;
    height: 100%;
}


.left-side {
    width: 50%;
    padding: 20px;
    overflow-y: scroll;
    max-height: 100vh; 
    box-sizing: border-box;
    margin-top: 200px; 
    
    -ms-overflow-style: none; 
    scrollbar-width: none;   
}

.left-side::-webkit-scrollbar {
    display: none; 
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6; 
}

.instructions-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 30px;
}

.instructions-text {
    margin-left: 20px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.right-side {
    position: relative;
    width: 50%;
    height: 100vh;
    box-sizing: border-box;
}

.credits {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 1rem;
    text-align: center;
    overflow: hidden;
}

.credits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    animation: scrollCredits 20s linear infinite; 
}

.credits li {
    margin-right: 50px;
}

@keyframes scrollCredits {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.arrow {
    position: fixed;
    top: 20px;
    right: 20px; 
    font-size: 30px;
    cursor: pointer; 
    z-index: 10;  
    color: white;  
    text-decoration: none;  
    transition: text-decoration 0.3s;  
}

.arrow:hover {
    text-decoration: underline;  
}

