* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

#countdown div {
    margin: 0 15px;
    text-align: center;
}

#countdown span {
    font-size: 2.5rem;
    font-weight: bold;
}

#countdown p {
    margin-top: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
