body {
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark gray text color */
    font-family: 'Roboto', sans-serif; /* Use the linked Google Font or a default */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    margin: 0;
}

.container {
    text-align: center; /* Center text inside the container */
    padding: 20px;
    max-width: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

hr {
    border: none;
    height: 3px;
    background-color: #333;
    width: 50%;
    margin: 1rem auto;
}

p {
    font-size: 1.2rem;
}
