/* Basic reset and font setup */
body {
    background-color: #f3f4f6;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Styling the main content box */
.container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    text-align: center;
}

/* Styling the text */
h1 {
    color: #2563eb;
    margin-bottom: 15px;
}

p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
}

.subtitle {
    color: #6b7280;
    font-size: 0.85em;
    font-weight: bold;
}