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

body {
  font-family: "Poppins", sans-serif;
  color: #ffff;
}
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(images/nazar-sharafutdinov-gq_dBc6DaX8-unsplash.jpg) no-repeat;
  background-size: cover;
}
.countdown_container {
  text-align: center;
}

h2 {
  font-weight: 900;
  font-size: 3.5rem;
  padding: 3rem;
}

.timer_container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.timer_container > div {
  width: 150px;
  font-weight: 900;
  font-size: 4.5rem;
}

h3 {
  font-size: 1rem;
}

.day_container,
.hour_container,
.minute_container,
.second_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.me {
  position: fixed;
  bottom: 0;
  font-size: 0.9rem;
}
.me a {
  text-decoration: none;
  color: #ffff;
  font-weight: 900;
}

a:hover {
  text-decoration: underline;
  color: #c32eb1;
}
/* Responsive section */
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    padding: 3rem;
  }

  .day_container,
  .hour_container,
  .minute_container,
  .second_container {
    padding: 2rem;
  }
}
