@font-face {
  font-family: "NeurealRegular";
  src: url("/assets/Neureal-Regular-Web/Neureal-Regular.woff2") format("woff2"), url("/assets/Neureal-Regular-Web/Neureal-Regular.woff") format("woff");
}
* {
  font-family: "NeurealRegular", fallback, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #a5f88d;
}

.space-statement-header {
  display: flex;
  margin-bottom: 1%;
}

.space-statement-header img {
  width: 20%;
  margin-right: 2%;
}

#textAnimation {
  transition: 0.5s;
  margin-top: 2%;
  color: #35fc00;
}

#textAnimation.change {
  opacity: 0;
}

.content {
  display: flex;
}

.left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left img {
  width: 70%;
  animation: rotateShake 5s ease-in-out infinite;
}

.right {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
}
.right a {
  color: black;
}
.right a:hover {
  color: #674ee7;
}

@keyframes rotateShake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 575.98px) {
  .content {
    flex-direction: column;
  }
  .content .left,
  .content .right {
    width: 100%;
  }
  .content .right {
    position: relative;
  }
}/*# sourceMappingURL=donate.css.map */