body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000; /* Black background */
    color: #e0e0e0; /* Light text for contrast */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fadeIn 0.5s ease-in; /* Apply fade-in animation */
}

h1, h2, h3 {
    color: #ffffff; /* Adjust headers to white for better visibility */
}

.button {
    display: inline-block;
    font-size: 1rem;
    color: #ffffff;
    background: #1c1c1c; /* Button background */
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s, color 0.3s;
}

.button:hover {
    background: #35424a; /* Hover background */
    color: #ffffff; /* Hover text color */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}