body {
    font-family: "Playwrite GB S", cursive;
    background-color: #121212;
    color: #f0f0f0;
    margin: 40px;
    font-size: 35px;
    text-align: center;
}

#secretMessage {
    display: none;
    font-size: 20px;
    color: #f0f0f0;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #0077cc;
    font-size: 30px;
}

a:hover {
    color: #00a3ff;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

body.fade-out {
    animation: fadeOut 1s ease-in-out forwards;
}

.event {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.event:hover {
    transform: scale(1.05);
}

.event h2 {
    color: #c68c5c;
    margin-bottom: 10px;
}

.event p {
    color: #f0f0f0;
    margin: 5px 0;
}

/* Media Queries for Mobile Devices */
@media (max-width: 600px) {
    body {
        font-size: 16px;
        margin: 10px;
    }

    .logo {
        max-width: 80px;
    }

    a {
        font-size: 20px;
    }

    #secretMessage {
        font-size: 14px;
    }
}