body {
    background-color: #d20000; /* Green background */
    color: #d20000; /* Red text */
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}
.container {
    padding: 20px;
    border: 2px solid #d20000; /* Red border */
    border-radius: 10px;
    background-color: #FFFFFF; /* White background for the container */
}
h1 {
    margin-bottom: 20px;
}