html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: black;
    color: white;
}

/* Styling for centered content */
.center-content h1 {
    font-size: 3rem;
    margin: 0;
    color: white;
}

/* Responsiveness for mobile devices */
@media (max-width: 768px) {
    .center-content h1 {
        font-size: 2rem;
    }
}

