* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
  box-sizing: border-box;
}

.wadah {
  width: 100vw;
  height: 100vh;
  background-image: url(../IMG/latar.jpg);
  background-position: center;
  background-size: cover;
  padding: 0 8%;
  position: relative;
}

.logo {
  width: 200px;
  padding: 1px 0 20px;
  cursor: pointer;
}

.konten {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: #fff;
}

.konten h1 {
  font-size: 64px;
  font-weight: 600;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.konten .status {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.konten h1 span {
  color: #b10494;
}

.konten button {
  background: transparent;
  border: 2px solid #fff;
  outline: none;
  padding: 12px 25px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.konten button img {
  width: 15px;
  margin-left: 10px;
}

.konten button:hover {
  transform: scale(1.1);
}

.waktu-peluncuran {
  display: flex;
}

.waktu-peluncuran div {
  flex-basis: 100px;
}

.waktu-peluncuran div p {
  font-size: 60px;
  margin-bottom: -5px;
}

.roket {
  width: 250px;
  position: absolute;
  right: 10%;
  bottom: 0;
  animation: roket 4s linear infinite;
}

@keyframes roket {
  0% {
    bottom: 0;
    opacity: 0;
  }

  100% {
    bottom: 105%;
    opacity: 1;
  }
}
