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

* {
    box-sizing: border-box;
}

body {
    background-image: url("../../images/Alicante.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 1px #000;
    margin: 0;
}

h1 {
    font-weight: normal;
    font-size: 4rem;
    color: white;
}

.countdown-container {
    display: flex;          /* nebeneniander anordnen */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.big-text {
    font-weight: bold; 
    color: white;
    font-size: 6rem;
    line-height: 1;
    margin: 0 2rem;
    min-width: 8rem;
}

.countdown-el {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}