/* Reset some default styles */
body, h1 {
    margin: 0;
    padding: 0;
}

/* Set body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    height: 100vh; /* Set the body height to 100% of the viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center the loader text */
.loader {
    text-align: center;
}

/* Responsive styles */
@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }
}