@charset "utf-8";
/* CSS Document */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Use a common, readable font */
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark gray text color */
}

.container {
    /* Use flexbox to center the content perfectly */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    height: 100%;
    text-align: center; /* Center text within the container */
    padding: 20px;
}

h1 {
    font-size: 2.5rem; /* Large heading font size */
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem; /* Paragraph font size */
}
