/* style.css */

/* Set height to 100% for body and html to enable the content to center properly */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* Use a common font */
    background-color: #f0f0f0; /* Simple background color */
    color: #333;
}

.container {
    /* Center the content vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 80%; /* Make it responsive */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

hr {
    border: none;
    border-top: 3px solid #333;
    width: 50%;
    margin: 1em auto;
}

p {
    font-size: 1.2em;
}
