* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.container {
  width: 100vw;
  height: 100vh;
  background-image: url(images/background.png);
  background-position: center;
  background-size: cover;
  padding: 0 8%;
}
.logo {
  width: 120px;
  padding: 20px 0;
  cursor: pointer;
}

.discord {
  top: 50%;
  position: relative;
  transform: translateY(20%);
}
.content {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: #fff;
}
.content h1 {
  font-size: 64px;
  font-weight: 600;
}
.content h1 span {
  color: #ff3753;
}
.content button {
  background: transparent;
  border: 2px solid #fff;
  outline: none;
  padding: 12px 25px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
.content button img {
  width: 15px;
  margin-left: 10px;
}
.launch-time {
  display: flex;
}
.launch-time div {
  flex-basis: 100px;
}
.launch-time div p {
  font-size: 60px;
  margin-bottom: 1px;
}
.launch-time div span {
  padding-top: 10px;
}
.rocket {
  width: 250px;
  position: absolute;
  right: 10%;
  bottom: 0;
  animation: rocket 4s linear infinite;
}
.container {
  background-image: linear-gradient(to bottom, #8c1eff, #ff36a3);
}
@keyframes rocket {
  0% {
    bottom: 0;
    opacity: 0;
  }
  100% {
    bottom: 105%;
    opacity: 1;
  }
}

/* Mobile **/
@media only screen and (max-width: 768px) {
  .container {
    padding: 0 5%;
    min-height: 100vh; /* Ensure background gradient covers the entire viewport */
  }
  .logo {
    width: 100px;
    padding: 10px 0;
  }
  .content {
    text-align: center;
    top: 40%;
    position: relative;
    margin-top: 40px;
  }
  .content h1 {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .launch-time {
    flex-wrap: wrap;
    justify-content: center;
  }
  .launch-time div {
    flex-basis: 50px;
    margin: 5px;
  }
  .launch-time div p {
    font-size: 30px;
  }
  .rocket {
    display: none; /* Hide the .rocket element in mobile view */
  }
  /* Replace the background image with a gradient */
  .container {
    background-image: linear-gradient(to bottom, #8c1eff, #ff36a3);
  }
}

/* Keyframes for mobile version */
@keyframes rocket-mobile {
  0% {
    bottom: 0;
    opacity: 0;
  }
  100% {
    bottom: 85%;
    opacity: 1;
  }
}