body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('36481.jpg');
    background-size: contain; /* Fit image inside without cropping */
    background-repeat: repeat; /* Avoid repeating the image */
    background-position: center; /* Center the image */
}
.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f9d342;
}
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.time {
    text-align: center;
    padding: 10px;
    font-size: 1.5rem;
}
.time span {
    display: block;
    font-size: 2.5rem;
    color: #f76d82;
}
