body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00c4cc;
}

p {
    font-size: 1.2rem;
    color: #ccc;
}

a {
    text-decoration: none;
    color: #ffb9b9;
}

a:hover {
    text-decoration: underline;
    color: #00c4cc;
}

footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}