body {
  background-color: #dadde3;
  color: #35373b;
  font-family: sans-serif;
  font-size: 18px;

  h1 {
    all: unset;
  }

  h2 {
    all: unset;
  }

  a {
    color: #055df5;

    img {
      border: 2px solid;
      background-color: #055df5;
      border-radius: 25px;
    }
  }

  input {
    font-size: 18px;
  }

  a {
    color: #1208d9;
  }

  a:visited {
    color: #1208d9;

    img {
      background-color: #1208d9;
    }
  }

  iframe {
    border: 0;
    width: 100%;
  }

  .youtube {
    height: 500px;
    width: 100%;
  }
}

@media screen and (prefers-color-scheme: dark) {
  body {
    background-color: #313233;
    color: #dadde3;

    input {
      background-color: #313233;
      color: #dadde3;
    }

    a {
      color: #00d6d4;
    }

    a:visited {
      color: #00d6d4;
    }
  }
}

footer {
  border-top: 1px solid;
  padding: 10px;
  font-size: 12px;
}

.header-links {
  i {
    margin-right: 5px;
  }
  img {
    vertical-align: top;
    margin-right: 5px;
  }

  align-items: center;
  font-size: 24px;
}

.header-link {
  display: inline;
  white-space: nowrap;
}

.responsive-wrapper {
  display: grid;
  height: 100%;
}

.responsive-element {
  max-width: 100%;
  max-height: 100vh;
  margin: auto;
}

.row {
  margin: 1em;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 2px;
  counter-reset: div;
}

.col {
  margin-left: 20px;
  grid-column: auto/span 6;
}

.newsletter-container {
  margin: 1em;
}

.lg-text {
  font-size: 24px;
  font-weight: bold;
}

.form-element {
  margin-top: 15px;
}

.form-button {
  font-size: 20px;
}

@media only screen and (max-width: 1000px) {
  .col {
    grid-column: auto/span 12;
    margin-left: 5px;
  }
}
