* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
  }
  
  .container {
    width: 100%;
    height: 100vh;
    background-image: url(images/background.jpg);
    background-position: center;
    background-size: cover;
    padding: 0 5%;
    position: relative;
  }
  
  .logo {
    width: 120px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%);
    cursor: pointer;
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  
  .content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 5px;
  }
  
  .content h1 span {
    color: #ff3753;
  }
  
  .content button {
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    cursor: pointer;
  }
  
  .content button img {
    width: 18px;
    margin-left: 10px;
  }
  
  .launch-time {
    display: flex;
    justify-content: center;
  }
  
  .launch-time div {
    flex-basis: 100px;
  }
  
  .launch-time div p {
    font-size: 50px;
    margin-bottom: -10px;
    margin-left: 5px;
    display: flex;
    justify-content: space-between;
  }
  .launch-time div p span {
    margin: 0 10px;
  } 
  .rocket {
    width: 50%;
    max-width: 250px;
    position: absolute;
    right: 5%;
    bottom: 0;
    animation: rocket 4s linear infinite;
  }
  
  @keyframes rocket {
    0% {
      bottom: 0;
      opacity: 0;
    }
    100% {
      bottom: 105%;
      opacity: 1;
    }
  }
  
  footer {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    opacity: 0.7;
  }
  