.box {
  padding: 20px;
  height: 39rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#wording {
  display: flex;
  column-gap: 13rem;
  font-size: 5rem;
  background: black;
  color: #ffffff;
  height: 6rem;
  display: none;
  position: fixed;
  top: 58%;
}

#wording:nth-child(n) {
  padding: 2px 30px 2px 30px;
}

#wording::after {
  content: "";
  color: blanchedalmond;
  height: 6px;
  margin: 3px;
  width: 20rem;
  background-color: #bab9b8;
  position: fixed;
  top: 58.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 60px;
  top: -7%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.waviy span {
  position: relative;
  display: inline-block;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}
@keyframes waviy {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}

input {
  width: 35rem;
  padding: 19px;
  margin: 5px;
  border: none;
  background: #e7e7e7;
  font-size: 24px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  outline: none;
}

#btn {
  width: 13rem;
  margin: 7px;
  padding: 6px;
  background: #272727;
  color: white;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 2rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#btn:hover {
  background-color: grey;
}
