* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Popppins", sans-serif;
}
.container {
  height: 100vh;
  width: 100vw;
  background-image: url(bgi.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero {
  margin-top: 50px;
  width: 50%;
  height: 26%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.launch-time {
  width: 100%;
  height: 100%;
  background: rgba(235, 0, 255, 0.11);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
.launch-time div {
  flex-basis: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.launch-time div p {
  color: #fff;
  font-size: 40px;
  margin-bottom: -14px;
}
.launch-time div span {
  color: #fff;
}
.text h1 {
  margin-bottom: 10px;
  text-align: center;
  color: #9a2e4f;
  font-size: 35px;
}
.name p {
  display: inline-block;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 30px;
  text-align: center;
  color: #a53d40;
}
.text .sec {
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5),
    -1px -2px 6px rgba(203, 22, 115, 0.5);
  font-size: 30px;
}
@media (max-width: 768px) {
  .text h1 {
    color: #a53d40;
  }
  .text .sec {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5),
      -1px -2px 6px rgba(203, 22, 115, 0.5);
  }
}
@media (max-width: 550px) {
  .hero {
    height: 16%;
  }
  .launch-time div p {
    font-size: 28px;
  }
  .launch-time div span {
    font-size: 12px;
  }
  .text h1 {
    color: #9a2e4f;
    font-size: 28px;
  }
  .name p {
    color: #9a2e4f;
    font-size: 23px;
  }
  .text .sec {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5),
      -1px -2px 6px rgba(203, 22, 115, 0.5);
      font-size: 24px;
  }
}
