body, h1{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'DayDream';
    src: url('/Daydream.293c63ef.ttf') format('truetype');
}

@font-face {
    font-family: 'PixelFont';
    src: url('/pixelFont.d91b0e5c.ttf') format('truetype');
}

@keyframes rollingBounce {
    0% {
        color: #fff; 
        transform: translateY(0); 
    }
    50% {
        color: #f0f;
        transform: translateY(-20px);
    }
    100% {
        color: #fff; 
        transform: translateY(0); 
    }
}

.title-container {
    width: 100%;
    text-align: center;
    animation: rollingBounce 10s infinite;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
}

.title {
    font-family: 'DayDream', sans-serif;
    font-size: 300%;
    opacity: 70%;
    color: #3c2a7c;
}

#info-box {
    position: fixed;
    top: 65%;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #151b4b;
    border: 5px solid rgb(109, 62, 0);
    opacity: 85%;
    padding: 10px;
    min-width: 500px;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    font-family: Arial, Helvetica, sans-serif;
    color: #c0c0c0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5d42be #151b4b;
}

#info-box:hover {
    background-color: #1c2463;
}

#info-box h2 {
    padding-left:20px;
    color: rgb(255, 179, 39);
    font-family: 'DayDream', sans-serif;
    font-size: 30px;
}

#info-box p {
    padding-left:20px;
    color: rgb(255, 208, 121);
    font-size: 23px;
    font-family: 'PixelFont', sans-serif;
}

#info-box::-webkit-scrollbar {
    width: 20px;
  }

#info-box::-webkit-scrollbar-track {
    background-color: transparent;
}

#info-box::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 30px;
    border: 6px solid transparent;
    background-clip: content-box;
}

#info-box::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
  }

#reset-view {
    position: absolute;
    top: 10%;
    left: 5%;
    align-items: center;
    font-family: 'PixelFont', sans-serif;
    font-size: 14px;
    background-color: #3c2a7c;
    color:aliceblue;
    padding: 10px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    letter-spacing: .06em;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: font-size 0.3s ease;
}

#reset-view:hover {
    font-size: 15px;    
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/splashScreen.9ee2e4f1.gif');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease;
}

.title-splash {
    font-family: 'DayDream', sans-serif;
    background-image: linear-gradient(-225deg, #3c2a7c 10%, #6447ce 50%, #3c2a7c 90%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 350%;
    animation: rollingBounce 3s infinite;
    position: fixed;
    top: 45%; 
    left: 25%;
    right: 25%; 
    transform: translate(-50%, -50%);
}
.fade-out {
    opacity: 0;
}


/*# sourceMappingURL=/styles.8986bff4.css.map */