<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rocket {
  position: absolute;
  top: 20%;
  width: 80px;
  left: calc(50% - 60px);
}
.rocket .rocket-body {
  width: 80px;
  left: calc(50% - 50px);
  animation: bounce 0.5s infinite;
}
.rocket .rocket-body .body {
  background-color: #dadada;
  height: 180px;
  left: calc(50% - 50px);
  border-top-right-radius: 100%;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top: 5px solid #b3b3b3;
}
.rocket .rocket-body:before {
  content: "";
  position: absolute;
  left: calc(50% - 24px);
  width: 48px;
  height: 13px;
  background-color: #554842;
  bottom: -13px;
  border-bottom-right-radius: 60%;
  border-bottom-left-radius: 60%;
}
.rocket .window {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #1c95ff;
  left: calc(50% - 20px);
  top: 40px;
  border: 5px solid #b4b2b2;
}
.rocket .fin {
  position: absolute;
  z-index: -100;
  height: 55px;
  width: 50px;
  background-color: #1c95ff;
}
.rocket .fin-left {
  left: -30px;
  top: calc(100% - 55px);
  border-top-left-radius: 80%;
  border-bottom-left-radius: 20%;
}
.rocket .fin-right {
  right: -30px;
  top: calc(100% - 55px);
  border-top-right-radius: 80%;
  border-bottom-right-radius: 20%;
}
.rocket .exhaust-flame {
  position: absolute;
  top: 90%;
  width: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.22172619047619047) 0%, rgba(253,29,29,0.4374124649859944) 50%, rgba(252,176,69,1) 100%);
  height: 80px;
  left: calc(50% - 10px);
  animation: flame 0.2s infinite;
}
.rocket .exhaust-fumes li {
	
  width: 6px;
  height: 6px;
  background-color: #b3b3b3;
  list-style: none;
  position: absolute;
  border-radius: 100%;
}
.rocket .exhaust-fumes li:first-child { 

  width: 30px;
  height: 30px;
  bottom: -100px;
  animation: fumes 5s infinite;
}
.rocket .exhaust-fumes li:nth-child(2) {
	
  width: 55px;
  height: 55px;
  left: 50px;
  top: 235px;
  animation: fumes 3.2s infinite;
}
.rocket .exhaust-fumes li:nth-child(3) {
	
  width: 50px;
  height: 50px;
  left: 30px;
  top: 245px;
  animation: fumes 3s 1s infinite;
}
.rocket .exhaust-fumes li:nth-child(4) {
	
  width: 30px;
  height: 30px;
  left: -20px;
  animation: fumes 4s 2s infinite;
  top: 250px;
}
.rocket .exhaust-fumes li:nth-child(5) {
	
  width: 40px;
  height: 40px;
  left: 0px;
  top: 255px;
  animation: fumes 5s infinite;
}
.rocket .exhaust-fumes li:nth-child(6) {
	
  width: 30px;
  height: 30px;
  left: 50px;
  top: 250px;
  animation: fumes2 10s infinite;
}
.rocket .exhaust-fumes li:nth-child(7) {
	
  width: 15px;
  height: 15px;
  left: 60px;
  top: 270px;
}
.rocket .exhaust-fumes li:nth-child(8) {
  width: 40px;
  height: 40px;
  left: 20px;
  top: 230px;
}
.rocket .exhaust-fumes li:nth-child(9) {
  width: 45px;
  height: 45px;
  left: 10px;
  top: 240px;
  animation: fumes 20s infinite;
}

.star li {
  list-style: none;
  position: absolute;
}
.star li:before, .star li:after {
  content: "";
  position: absolute;
  background-color: #b3b3b3;
}
.star li:before {
  width: 10px;
  height: 2px;
  border-radius: 50%;
}
.star li:after {
  height: 8px;
  width: 2px;
  left: 4px;
  top: -3px;
}
.star li:first-child {
  top: -30px;
  left: -210px;
  animation: twinkle 0.4s infinite;
}
.star li:nth-child(2) {
  top: 0;
  left: 60px;
  animation: twinkle 0.5s infinite;
}
.star li:nth-child(2):before {
  height: 1px;
  width: 5px;
}
.star li:nth-child(2):after {
  width: 1px;
  height: 5px;
  top: -2px;
  left: 2px;
}
.star li:nth-child(3) {
  left: 120px;
  top: 220px;
  animation: twinkle 1s infinite;
}
.star li:nth-child(4) {
  left: -100px;
  top: 200px;
  animation: twinkle 0.5s ease infinite;
}
.star li:nth-child(5) {
  left: 170px;
  top: 100px;
  animation: twinkle 0.4s ease infinite;
}
.star li:nth-child(6) {
  top: 87px;
  left: -79px;
  animation: twinkle 0.2s infinite;
}
.star li:nth-child(6):before {
  height: 1px;
  width: 5px;
}
.star li:nth-child(6):after {
  width: 1px;
  height: 5px;
  top: -2px;
  left: 2px;
}

@keyframes fumes {
  50% {
    transform: scale(1.5);
    background-color: transparent;
  }
  51% {
    transform: scale(0.8);
  }
  100% {
    background-color: #b3b3b3;
    transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: translate3d(0px, 0px, 0);
  }
  50% {
    transform: translate3d(0px, -4px, 0);
  }
  100% {
    transform: translate3d(0px, 0px, 0);
  }
}
@keyframes exhaust {
  0% {
    background: linear-gradient(to bottom, transparent 10%, #b3b3b3 100%);
  }
  50% {
    background: linear-gradient(to bottom, transparent 8%, #b3b3b3 100%);
  }
  75% {
    background: linear-gradient(to bottom, transparent 12%, #b3b3b3 100%);
  }
}
@keyframes flame {
  0% {
    background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.22172619047619047) 0%, rgba(253,29,29,0.4374124649859944) 50%, rgba(252,176,69,1) 100%);
  }
  50% {
    background: linear-gradient(180deg,transparent 8%, rgba(0,0,0,0.22172619047619047) 6%, rgba(253,29,29,0.4374124649859944) 51%, rgba(252,176,69,1) 100%);
  }
  75% {
    background: linear-gradient(180deg, transparent 12%, rgba(0,0,0,0.22172619047619047) 0%, rgba(253,29,29,0.4374124649859944) 50%, rgba(252,176,69,1) 100%);
  }
}
@keyframes fumes2 {
  50% {
    transform: scale(1.1);
  }
}
@keyframes twinkle {
  80% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}</pre></body></html>