body{
    background-size: cover;
    background-color: #111111;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.countdownheader{
    text-align: center;
    font-size: 20px;
}
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
}

#time-display {
    font-size: 2em;
    margin-bottom: 20px;
}

.progress-bar-container {
    width: 300px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border: #333333 2px solid;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 100%;
    background-color: #4CAF50;
    transition: width 0.3s linear; 
}
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/blacksand.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: -1;
    transform: scale(1.1);
}