@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&amp;display=swap");

* {
    box-sizing: border-box;
}

body {
    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;
    /* background-color: mediumslateblue; */
    background-image: url(bg.gif);
    padding: 20px;
}

h1 {
    font-weight: normal;
    font-size: 4rem;
    margin-top: 5rem;
    color: rgb(41, 128, 209);
    margin-top: 160px;
    text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
    0px -4px 10px rgba(255,255,255,0.3);
}

.container {
    width: 800px;
    height: 500px;
    background-color: transparent;
    border-radius: 20px;
    /* box-shadow: 0px 3px 22px 1px rgba(0,0,0,0.75); */
    text-align: center;
    position: absolute;
    z-index: -1;
    opacity: 100%;
    margin-top: 80px;
    opacity: 0%;
    border: 2px solid white;
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: rgb(138, 135, 135);
}

.big-text {
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 1rem 2rem;
    text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
    0px -4px 10px rgba(255,255,255,0.3);
}

.countdown-el {
    text-align: center;
}

.countdown-el span {
    font-size: 1.3rem;
    text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
    0px -4px 10px rgba(255,255,255,0.3);
}