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

#content {
    background-color: #ffffff;
    width: 400px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 14px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 24px;
    /*color: #333;*/
    margin-bottom: 15px;
    color: #007bff;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-align: left;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

#countdown {
    font-size: 14px;
    color: #999;
}

#bottom {
    text-align: center;
    margin-top: 0;
}