* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100%;
  background-image: url(jack-b-ombUn7ergE4-unsplash.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: aliceblue;
}
.name {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.name span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  font-family: arial;
  color: #17abd0;
  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);
  }
}
.content .para {
  font-family: sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 35px;
  text-decoration: underline wavy #17abd0;
}
.launch-time {
  display: flex;
  cursor: pointer;
}
.launch-time div {
  flex-basis: 100px;
  margin: 10px;
}
.launch-time div p {
  font-size: 60px;
  margin-top: 14px;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch-time {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch-time div {
  flex-basis: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  gap: 20px;
  border: 1px solid #fff;
  height: 15vh;
  width: 15vh;
  background: transparent;
}
.launch-time div p {
  color: #fff;
  font-size: 40px;
  margin-bottom: -14px;
  font-family: sans-serif;
}
.launch-time div span {
  color: #fff;
}
@media (max-width: 580px) {
  .name span {
    font-size: 45px;
  }
  .content .para {
    font-size: 30px;
  }
  .launch-time div {
    height: 15vh;
    width: 13vh;
    margin-bottom: -7px;
  }
}
@media (max-width: 453px) {
    .name span {
        font-size: 30px;
      }
      .content .para {
        font-size: 20px;
      }
      .launch-time div {
        height: 15vh;
        width: 10vh;
      }
}

