@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins:wght@300&display=swap");

body {
  background-color: black;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14pt;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 40pt;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.subtitle {
  font-size: 16pt;
  opacity: 0.8;
  margin-bottom: 2rem;
}

h2 {
  font-size: 22pt;
  margin-bottom: 0.25rem;
}

main {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
  padding: 0 0.5rem;
}

p {
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}

ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

a {
  color: white;
}

a.button {
  text-decoration: none;
  display: block;
  border-style: solid;
  border-color: white;
  border-width: 1px;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 12pt;
  transition:
    background-color 0.2s,
    color 0.2s;
}

a.button:hover {
  background-color: white;
  color: black;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 700px) {
  header {
    margin: 1rem 1rem;
  }

  h1 {
    font-size: 28pt;
  }
}
