@font-face {
  font-family: "good timing";
  src: url("../../fonts/good_timing.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@keyframes slide-bg {
  0% {
    background-position: 100% 0;
  }
  50% {
    background-position: 60% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.contactView {
  height: 100dvh;
}

.formLabel {
  font-size: 25px;
  margin: 0 0 10px 10%;
  text-align: left;
}

.formInput {
  background-color: black;
  border-radius: 10px;
  width: 80%;
  height: 50px;
  font-size: 24px;
  margin: 0 10% 1em 10%;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.formInputWrong {
  outline: 5px red dotted;
}

.hop-animation {
  display: inline-block;
  animation: hop 2s ease-in-out infinite;
}

@keyframes hop {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
  40% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
