@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  min-height: 80vh;
  background: #000;
}
.box {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  position: absolute;
  background: #000;
  top: 65%;
  bottom: 0;
  left: 0;
  right: 0;
}
h2 {
  font-size: 6em;
  font-weight: 500;
  color: #222;
  letter-spacing: 5px;
  cursor: pointer;
}
h5 {
  font-size: 1.5em;
  font-weight: 100;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
}
h2 span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
h2:hover span:nth-child(1) {
  display: none;
}
h2:hover span:nth-child(2):after {
  content: "will be back soon";
}
h2:hover span:nth-child(2) {
  margin-left: 20px;
}
h2:hover span {
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff, 0 0 120px #fff, 0 0 160px #fff;
}

