/* Basic styling for the entire page */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}

/* The main container card */
.card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    max-width: 600px;
    margin: 20px;
}

/* Styling for the main heading */
h1 {
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* Styling for the paragraphs */
p {
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Styling for the button link */
.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.button:hover {
    background-color: #0056b3;
}
