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

h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.countdown {
    font-size: 2em;
    color: #e74c3c;
    margin: 20px 0;
}

.button {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2980b9;
}

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