body {
  background-color: #ffcccc;
  font-family: "Comic Sans MS", cursive;
  text-align: center;
  width: 100%;
  height: 100%;
}
button:disabled {
  background-color: #696969 !important;
  color: #ebebeb !important;
}
#container {
  will-change: transform;
  border: 5px dashed red;
  padding: 20px;
  margin: auto;
  max-width: 400px;
  width: 100%;
  background-color: #ffff99;
  box-shadow: 10px 10px 20px #000000;
}
input {
  margin: 10px 0;
  padding: 5px;
  font-size: 14px;
  font-family: "Comic Sans MS", cursive;
}
label {
  font-weight: bold;
  color: blue;
}
h1 {
  color: red;
  text-shadow: 2px 2px black;
}
button {
  padding: 7px;
  background-color: red;
  outline: none;
  border: none;
  color: white;
  font-family: "Comic Sans MS", cursive;
}
h3 {
  color: darkorange;
  background-color: #FFFFFF;
}
#submitPayment {
  width: 100%;
  height: 50px;
  font-size: large;
  margin-top: 10px;
  background-color: rgb(0, 190, 0);
}
#link-element {
  margin-top: 5px;
}
* {
  box-sizing: border-box;
}
#money-input-container {
  display: flex;
  justify-content: center;
}
#legal {
  color: gray;
  font-size: xx-small;
}
#errorboxcontainer {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 1000;
}
#errorbox {
  padding: 8px;
  background-color: red;
  outline: none;
  border: none;
  color: white;
  font-family: "Comic Sans MS", cursive;
  font-weight: bold;
  border: 2px dashed yellow;
  visibility: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0deg) translateX(0%);
  }
  25% {
    transform: rotate(90deg) translateX(25%);
  }
  75% {
    transform: rotate(270deg) translateX(-50%);
  }
  to {
    transform: rotate(360deg) translateX(0%);
  }
}
.errorText {
  color: purple;
}
.icon {
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
  margin: 20px;
}
.spinning {
  animation: spin 0.75s linear infinite;
}