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

body {
    font-family: "Lato", sans-serif;
}

.coming-soon h2 {
    font-size: clamp(1.5rem,4vw,3rem);
    padding: 3rem;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-image: url("images/rente.png");
    background-size: 100%;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 40%;
    flex-wrap: wrap;
    gap: 2rem;
}

.day,
.hour,
.minute,
.second {
    font-size: 3rem;
}

.waiting {
    height: 25vh;
}

@media(max-width:600px) {
    .countdown > * {
        width: calc(50% - 2rem);
    }
}