html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: -webkit-fill-available;
}

body {
  color: #333;
  background: #000;
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body.no-scroll {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

a {
  color: var(--brighter-green);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.4em;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

p {
  line-height: 1.5;
}

@font-face {
  font-family: Damaged;
  src: url("/fonts/damaged.ttf") format("truetype");
}

/* Hide reCAPTCHA badge - will be mentioned in the form separately */
.grecaptcha-badge {
  visibility: hidden;
}

fieldset {
  border: none;
  padding: 0;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.3;
  }
}
