body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    border: 2px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.container img.logo {
    max-width: 200px; /* Increase this value to double the size */
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
}

p {
    margin: 10px 0;
}

.footer {
    margin-top: 20px;
    font-size: 0.9em;
}

.footer a {
    color: #0073b1;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
