.stix-two {
  font-family: "STIX Two Text", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Helvetica', 'Open Sans', sans-serif;
  color: #ddd;
  background-color: #31522F;
}

section {
  min-height: 200px;
}

a {
  color: #ddd;
}

a:hover {
  color: #eeab3f;
}

a:visited {
  color: #ddd;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spin {
  display: inline-block;
  margin: 8px;
  animation: spinner 30s infinite linear;
}

h1.logomark {
  text-align: center;
  color: white;
  font-size: 80px;
  text-transform: uppercase;
  font-family: "STIX Two Text", serif;
  font-weight: 800;
  letter-spacing: 16px;
}

.summary {
  font-size: 1.25rem;
  max-width: 80vw;
  min-width: 300px;
}

@media (max-width: 540px) {
  h1.logomark {
    font-size: 50px;
    margin: 24px auto 40px;
  }

  .summary {
    font-size: 1.2rem;
  }
}

@media (max-width: 375px) {
  h1.logomark {
    font-size: 40px;
    margin: 24px auto 48px;
  }

  .summary {
    font-size: 1.2rem;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.bookmark {
  z-index: 999;
  color: #31522F;
  height: 60px;
  background-color: #eeab3f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
}

@media (max-height: 400px) {
  .bookmark {
    display: none;
  }
}


.bookmark a {
  color: #31522F
}
