@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');

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

.countdown-container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
}

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

.time-box {
    margin: 0 1rem;
    text-align: center;
}

.time-box span {
    display: block;
}

.time-box #days,
.time-box #hours,
.time-box #minutes,
.time-box #seconds {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
}

.time-box .label {
    font-size: 1.2rem;
    text-shadow: 0 0 5px #0f0;
}