html {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color: #2a3f5e;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2 {
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 2.2rem;
}
code {
  font-size: 1.4rem;
  font-family: 'Source Code Pro', monospace;
}
nav {
  background-color: #68b5b3;
  align-self: stretch;
  color: white;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
nav ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
nav ul li {
  list-style: none;
  padding: 1rem;
}
nav ul li a {
  color: white;
  text-decoration: none;
}
nav ul li a:hover {
  cursor: pointer;
}
nav img {
  width: 150px;
  margin: 0 1rem;
}
@media (max-width: 760px) {
  nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  nav img {
    width: 220px;
    margin: 1rem;
  }
}
header {
  position: relative;
  box-sizing: border-box;
  background-color: #68b5b3;
  padding: 4rem 2rem;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 4rem;
}
header h1 {
  color: white;
  align-content: center;
  max-width: 760px;
}
header #header-buttons {
  grid-template-columns: auto auto;
  gap: 6rem;
}
header #header-buttons #get-started {
  margin: 2rem;
  font-size: 1.2rem;
  color: #68b5b3;
  padding: 0.8em 2em;
  text-decoration: none;
  background: white;
  box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.25);
  border-radius: 10em;
  cursor: pointer;
  text-align: center;
  transition: 0.3s box-shadow;
}
header #header-buttons #get-started:hover,
header #header-buttons #get-started:focus {
  outline: none;
  box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0.25), 0 0 1.4em rgba(255, 255, 255, 0.75);
}
header #header-buttons #get-started-local {
  margin: 2rem;
  font-size: 1.2rem;
  color: #68b5b3;
  padding: 0.8em 2em;
  text-decoration: none;
  background: white;
  box-shadow: 0 0 0 0.5em rgba(255, 255, 255, 0.25);
  border-radius: 10em;
  cursor: pointer;
  text-align: center;
  transition: 0.3s box-shadow;
}
header #header-buttons #get-started-local:hover,
header #header-buttons #get-started-local:focus {
  outline: none;
  box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0.25), 0 0 1.4em rgba(255, 255, 255, 0.75);
}
@media (max-width: 760px) {
  header {
    padding: 2rem;
  }
  header h1 {
    font-size: 1.8rem;
  }
}
main a,
main a:visited {
  color: #2a3f5e;
}
main .intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  line-height: 1.6;
  text-align: center;
}
main .logos {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
main .logos img {
  max-width: 220px;
  max-height: 50px;
  padding: 0.2rem 1rem;
}
main .resources {
  margin-bottom: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto auto auto;
  justify-content: center;
  justify-items: center;
}
main .resources a {
  padding: 0.5rem 1.5rem;
  background: #f5f5f5;
  border-radius: 100px;
  text-decoration: none;
}
main .resources a:hover {
  background: #eeeeee;
}
@media (max-width: 760px) {
  main .resources {
    grid-template-columns: auto;
  }
}
main .zigzag {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  display: grid;
  gap: 2rem;
}
main .zigzag h2 {
  font-size: 1.6rem;
  text-align: left;
}
main .zigzag p {
  line-height: 1.6;
}
main .zigzag img {
  width: 100%;
}
main .zigzag small {
  display: block;
  margin: 0.5rem 0;
}
@media screen and (min-width: 760px) {
  main .zigzag {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    row-gap: 1rem;
  }
  main .zigzag img {
    grid-row: span 2;
  }
  main .zigzag.image-right img {
    grid-column: 2;
  }
}
main #twitter-feed {
  padding: 2rem;
  width: 760px;
  margin: 0 auto;
  max-height: 500px;
  overflow-y: scroll;
}
main #get-in-touch {
  padding: 2rem;
  background-color: white;
}
main #get-in-touch h2 {
  margin-bottom: 2rem;
}
main #get-in-touch .contact-links {
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}
main #get-in-touch .contact-links a {
  text-decoration: none;
  outline: none;
  margin: 2rem;
}
main #get-in-touch .contact-links a img {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
}
main #get-in-touch .contact-links a:hover img {
  transform: scale(1.2);
}
footer {
  padding: 2rem;
  background-color: white;
  font-size: 0.7rem;
  text-align: center;
}
footer a {
  color: #2a3f5e;
  text-decoration: none;
}
