body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: #7f8c8d;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8em;
    color: #bdc3c7;
}

.button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #e74c3c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #c0392b;
}