body {
  font-family: "Mulish", sans-serif;
  margin: 0;
  color: #00425a;
}

h1 {
  font-size: 120px;
  margin-bottom: 0;
}

h2 {
  font-size: 64px;
  margin-bottom: 24px;
  color: #1f8a70;
}

a {
  text-decoration: none;
  color: #1f8a70;
  transition: color 0.3s;
}

a:hover {
  color: #bfdb38;
}

section {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  min-height: 50vh;
}
section.half {
  min-height: 25vh;
  background-color: #bfdb38;
  width: 100%;
  margin-top: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.half div {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

footer {
  text-align: center;
}

em {
  color: #fc7300;
  font-style: normal;
}

#title {
  height: 100vh;
  width: 100vw;
  background-color: #00425a;
  color: white;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#title svg {
  fill: currentColor;
  height: auto;
  max-width: 66vmin;
  transform-origin: center;
  width: 66%;
  animation: spin 20s normal infinite linear;
}
#title .container {
  width: 40%;
}

.subtitle {
  font-weight: 200;
  margin-top: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
