body,
html {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  margin: 0;
  height: 100%;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.donationCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 15vw;
  height: 30vh;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 30px;
}

#donationCardDiv {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px;
}

a {
  text-decoration: none;
}

.navButt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  margin: 10px;
  width: 165px;
  height: 30px;
  border-radius: 5px;
  background-color: #0077ff;
  color: #ffffff;
  font-size: medium;
  font-family: Arial, Helvetica, sans-serif;
}

.navButt:hover {
  background-color: rgb(156, 207, 255);
}

h1 {
  color: #0077ff;
  font-size: 2em;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

#animatedBackground {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

@keyframes floating {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw);
  }
}

.thankYou {
  position: absolute;
  font-size: 2em;
  white-space: nowrap;
}
