/* Body with a colored gradient background */
body {
    background-color: #ebf4ff;
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure the background covers the full height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#container {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Styling for the header */
h1 {
    color: #004aad;
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Helvetica';
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    font-family:monospace;
    margin-top: 100px;
}

p.footer {
    font-size: 12px;
    color: #999;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 20px;
}

.button {
    display: inline-block;
    background-color: #00796b;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #004d40;
}

#logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 120px;
}

/* Ensure container has a shadow and better spacing */
#container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    #container {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 16px;
    }

    p {
        font-size: 12px;
    }

    .button {
        padding: 6px 12px;
        font-size: 12px;
    }
}
