body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}
#pageTitle {
  height: 20%;
  width: 100%;
  background-color: red;
  color: white;
  font-size: 5em;
  animation: blinker 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
#supportText {
  height: 60%;
  width: 100%;
  font-size: 1.2em;
  padding: 10px;
  box-sizing: border-box;
  resize: none;
}
#submitSupport {
  height: 20%;
  width: 100%;
  background-color: red;
  color: white;
  font-size: 1.5em;
  border: none;
  border-radius: 40px;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
#submitSupport:hover {
  opacity: 0.5; /* Opacity when hovered */
}
#toast {
  position: fixed;
  top: 20%; /* Centering toast */
  width: 100%;
  height: 100%;
  background-color: green;
  color: white;
  text-align: center;
  font-size: 5em;
  align-items: center;
  justify-content: center;
}
.hide {
  display: none;
}
.show {
  display: flex;
}
#buymeacoffee {
  position: absolute;
  bottom: 2%;
  right: 2%;
  animation: heartbeat 5s infinite;
}
#buymeacoffee img {
  height: 5vh;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
}
