/* Style global */
body {
    background-color: #000;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
	overflow: hidden;
    position: relative;
}
.countdown-container {
    text-align: center;
    /*background-color: rgba(0, 0, 0, 1);*/
	background-color: #000;
    padding: 20px;
    border: 3px solid #00FF00;
    border-radius: 17px;
    box-shadow: 0 0 20px #00FF00;
	z-index: 10;
	opacity: 0.68;
}

.countdown-title {
    font-size: 24px;
	/*font-weight: bold;*/
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #FF0000;
    letter-spacing: 2px;
    animation: pulseTitle 1s infinite;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;											
}

.time-box {
    font-size: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    margin: 0 10px;
    text-shadow: 0 0 10px #00FF00;
}

.label {
    font-size: 14px;
    margin-top: 10px;
    color: #FF0000;
}

.separator {
    font-size: 60px;
    color: #FF0000;
    text-shadow: 0 0 10px #FF0000;
}

@keyframes pulseTitle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; 
    z-index: 1; 
}
