@charset "UTF-8";
h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

body, html {
  padding: 0;
  margin: 0;
  min-height: 100%;
  font-size: 1rem;
  line-height: 1.5;
}

input, textarea {
  touch-action: manipulation; /* Prevent zooming on form fields */
  -webkit-text-size-adjust: 100%; /* Ensure the text doesn’t adjust size */
}

.container {
  min-height: calc(100vh - 350px);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

iframe {
  max-width: var(--page-width);
  margin: auto;
  display: flex;
}

p a {
  color: var(--brand-light);
  text-decoration: none;
  word-break: break-word;
}

#default-spinner {
  width: 100vw;
  height: 100vh;
}

#default-spinner > div {
  animation-play-state: paused;
  border: 4px solid #c8c8c8;
  border-radius: 50%;
  animation: rotate 0.7s infinite linear;
  border-left-color: rgba(200, 200, 200, 0.4);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 30px;
    line-height: 50px;
  }
  p {
    margin-top: 0;
    font-size: 20px;
    line-height: 28px;
  }
}
