body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    overflow: hidden;  /* Prevents scrolling */
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#intro {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s forwards;
}
.message {
    margin: 20px 0;
}
.message h1 {
    font-size: 3em;
    margin: 0;
    animation: fadeIn 2s forwards;
}
/* .message span {
    font-size: 2em;
    display: inline-block;
    margin-top: 20px;
    animation: fadeIn 4s forwards;
} */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes launch {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100vh); }
}