body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.header {
    text-align: center; /* Center the text */
    margin-top: 20px;
}

.header h2 {
    color: #02060a;
}

.divider {
    width: 80%; /* Set the width of the line */
    height: 5px; /* Set the height of the line */
    background-color: #007BFF; /* Color of the line */
    border: none; /* Remove the default border */
    margin: 10px auto; /* Center the line with margin */
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}
