@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-image: url("./snow.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

h1 {
    font-weight: normal;
    font-size: 4rem;
    margin-top: 5rem;
    text-align: center;
    padding: 0 1rem;
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.big-text {
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 1rem 2rem;
}

.countdown-el {
    text-align: center;
    min-width: 120px;
}

.countdown-el span {
    font-size: 1.3rem;
}

footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.3); /* Transparent */
    font-size: 1rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .big-text {
        font-size: 4rem;
        margin: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .big-text {
        font-size: 3rem;
    }
    .countdown-el span {
        font-size: 1rem;
    }
}
