/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
}

.container {
    text-align: center;
    padding: 20px;
    border: 1px solid #fbfbfb44;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.297); /* Slightly transparent background */
    box-shadow: 0 0 10px rgba(23, 22, 22, 0.707);
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #090909;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #0e0d0d;
}

#countdown {
    font-size: 1.5em;
    color: #040404;
}

#countdown span {
    font-weight: bold;
}
