/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.5em;
    margin-bottom: 2em;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.time {
    background: #333;
    padding: 1em;
    border-radius: 10px;
    min-width: 80px;
}

.time span {
    display: block;
}

#days, #hours, #minutes, #seconds {
    font-size: 2em;
    font-weight: bold;
}
