.title {
    position: absolute;
    top: 40px; /* Position below the Home link */
    left: 20px; /* Add left padding */
    text-align: left;
    font-size: 2rem;
    color: #ffffff;
}

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 */
}



.home-link {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.home-link:hover {
    color: #e16bff;
}

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