@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,900;1,100&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: white;
}

body {
  background: #000
    url(https://images.pexels.com/photos/4195399/pexels-photo-4195399.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260)
    no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: luminosity;
}

/*Make a square*/
.container {
  position: absolute;
  top: 80px;
  left: 100px;
  right: 100px;
  bottom: 80px;
  background: url(https://images.pexels.com/photos/4195399/pexels-photo-4195399.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.9), 0 0 0 100px rgba(0, 0, 0, 0.1);
}

.container h2 {
  text-align: center;
  font-size: 5em;
  font-weight: 600;
  line-height: 0.7em;
  color: #f8f8f8;
  margin-top: -80px;
}

.container h2 span {
  display: block;
  font-weight: 300;
  letter-spacing: 6px;
  font-size: 0.2em;
  color: #fff;
}

.countdown {
  display: flex;
  margin-top: 50px;
}

.countdown div {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #000000;
  color: #fff;
  margin: 0 15px;
  font-size: 3em;
  font-weight: 500;
}

.countdown div:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 35px;
  background: #ffce00;
  color: #333;
  font-size: 0.35em;
  line-height: 35px;
  font-weight: 300;
}

.countdown div#day:before {
  content: "Days";
}

.countdown div#hour:before {
  content: "Hours";
}

.countdown div#minute:before {
  content: "Minutes";
}

.countdown div#second:before {
  content: "Seconds";
}
