/* Reset some default browser styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Use the full height of the viewport */
html, body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Light grey background */
    font-family: Verdana, sans-serif;
    color: #333; /* Dark grey text */
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #3D9970; /* Olive color for the title */
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    color: #666; /* Medium grey for the paragraph */
}
