header {
  gap: 1rem;
}
header img {
  height: 80px;
}
header p {
  font-size: 1.2rem;
}

main section {
  margin-bottom: 10rem;
}
main section div {
  font-size: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media only screen and (max-width: 1366px) {
  main section div {
    font-size: 1.2rem;
  }
}

form textarea {
  width: 85%;
  border: 5px solid #2d58bd;
  border-radius: 10px;
  resize: none;
  max-height: 5rem;
  padding: 1rem;
  font-size: 1.3rem;
  outline: none;
}
form button {
  width: 13%;
  font-size: 1.2rem !important;
  background-color: #2d58bd !important;
  border-color: #2d58bd !important;
}
form button:hover {
  background-color: #25489A !important;
  border-color: #25489A !important;
}
form a {
  color: white;
  font-size: 1.1rem;
  transition: color 0.15s ease-in-out;
}
form a:hover {
  color: #ED427D;
  text-decoration: none;
}

@keyframes spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.spin {
  animation: spin 0.5s linear infinite;
}/*# sourceMappingURL=style.css.map */