@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background-image: url('https://papuh.my/wp-content/uploads/2023/08/bg1.jpg');
  /*background: #3498db;*/
  /*background: linear-gradient(to top, #2ecc71, #3498db, #2c3e50);*/
/*   background-attachment: fixed; */
/*background-size:cover;*/
background-repeat:no-repeat;
}

.title {
  font: 50px;
  font-family: 'Red Hat Display';
  font-weight:900;
  /*letter-spacing: 0.2em;*/
  color: rgba(256, 256, 256, 1);
  text-align: center;
  /*line-height: 20vh;*/
  margin-top: 10vh;
}

.launch {
  font: 12px Arial;
  font-weight:600;
  color: rgba(256, 256, 256, 1);
  background: #F79420;
  display: block;
  width: 21vw;
  min-width: 80px;
  margin: 3vh auto;
  padding: 5px 10px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  line-height: 5vh;
}
.launch:hover {
  background: #1DA149;
  color: #fff;
}

.rocket {
  width: 200px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -20px;
  left: calc(50% - 100px);
  filter: brightness(80%);
  z-index: 100;
/*   animation: fire 20s infinite; */
}

footer {
  text-align: center;
  font: 16px Arial;
  color: #f5f5f5;
  position: absolute;
  width: 100%;
  bottom: 20px;
/*   z-index: -1; */
  transition: opacity 2s ease;
  opacity: 0;
    background-image: url('https://papuh.my/wp-content/uploads/2023/08/bg1.jpg');
}
footer a {
  color: #333;
  text-decoration: none;
}
/*footer a:hover {*/
/*  color: #f5f5f5;*/
/*  text-decoration: underline;*/
/*}*/

@keyframes fire {
  100% {
    bottom: 110vh;
    width: 40px;
    left: calc(50% - 20px);
  }
}