/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light grey background */
}

/* Content Styles */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.content .subtext {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 4rem;
    color: #333;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 600px) {
    .content .subtext {
        font-size: 1rem;
    }

    .content h1 {
        font-size: 2rem;
    }
}
