@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  background-image: url(img/snow.jpg);
  background-size: cover;
  background-position: center center;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

h1 {
  font-size: 4rem;
  margin-top: 10rem;
  font-weight: normal;
}

.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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

.countdown-el{
  text-align: center;
}

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