@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    font-family: Verdana;
}
body {
    margin: 0;
    padding: 0;
    background-color: #3B1E54;
}
.sidebar {
    width: 500px;
    height: 100vh; /* Fixed height */
    background-color: #9B7EBD;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    border-right: 2px solid #fff;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto; /* Enable vertical scrolling */
}

.sidebar h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: "Space Mono", monospace;
    font-weight: bolder;
    border-bottom: 3px solid white;
    padding: 10px;
}

.sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 10px 0;
}

.sidebar nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.sidebar nav ul li a:hover {
    background-color: #7A5DAE;
    transform: scale(1.05);
}
#game-1,
#game-2,
#game-3 {
    font-weight: lighter;
    font-size: 1.3rem;
    padding-left: 30px;
}
#box1{
    width: 650px;
    height: 900px;
    background-color: #9B7EBD;
    position: absolute;
    top: 50px;
    left: 1250px;
    border-radius: 35px;
}
#text1{
    color: white;
    font-size: 18px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: "Space Mono", monospace;
}
#box2{
    width: 650px;
    height: 900px;
    background-color: #9B7EBD;
    position: absolute;
    top: 50px;
    left: 550px;
    border-radius: 35px;
}
#text2{
    color: white;
    font-size: 18px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: "Space Mono", monospace;
}
#title{
    width: 1070px;
    height: 75px;
    background-color: rgb(0, 0, 0);
    background-image: url('/img/atmosphere.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    position: absolute;
    top: 20px;
    left: 690px;
    border-radius: 30px;
}
#titlepage{
    font-size: 36px;
    position: absolute;
    top: -5px;
    left: 1200px;
    color: white;
    font-family: "Space Mono", monospace;
}
#backgroundfate{
    width: 1070px;
    height: 920px;
    background-color: rgba(155, 126, 189, 0.25);
    opacity: 0.25;
    position: absolute;
    top: 115px;
    left: 690px;
    border-radius: 30px;
}
.scrollable-div {
    overflow: auto;
    scrollbar-color: #3B1E54 #9B7EBD;
}
#ballContainer {
    width: 1545px;
    height: 1063px;
    position: absolute;
    overflow: hidden;
    top: 0px;
    left: 500px;
}

.ball {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    animation: moveBall 5s ease-in-out forwards;
}

@keyframes moveBall {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100px);
    }
}
#footer1{
    width: 1070px;
    height: 100px;
    background-color: rgb(0, 0, 0);
    background-image: url('/img/atmosphere.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    position: absolute;
    top: 1055px;
    left: 690px;
    border-radius: 30px;
}
#footer2{
width: 80px;
height: 80px;
position: absolute;
right: 10px;
top: 10px;
background-color: #9B7EBD;
border-radius: 20px;
}