body {
  background-color: var(--white);
  overflow: hidden;
}

.wrapper {
  color: var(--black);
  font-family: Antarctica;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 200px;
}

p {
  letter-spacing: 10px;
  margin-left: 10px;
}

.propeller {
  animation-name: rotate;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
}

.start-engine {
  padding: 10px 20px;
  border: solid 1px var(--black);
  border-radius: 7px;
  letter-spacing: 1px;
  transition: all 0.5s;
  cursor: pointer;
}

.start-engine:hover {
  background-color: var(--red);
  color: white;
  border: solid 1px var(--red);
}

.delay {
  animation-delay: 0.8s;
}

@keyframes rotate {
  0% {
  }
  50% {
    color: #570202;
    filter: blur(1px);
  }
  100% {
    transform: rotate(36000deg);
  }
}
