@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");

a {
  color: #1cb495;
  text-decoration: underline;
}

body {
  background-color: #1e2b2e;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Roboto", sans-serif;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 14.5pt;
  }
}

@media screen and (max-width: 500px) {
  body {
    font-size: 13pt;
  }
}

footer {
  padding-bottom: 20pt;
  font-size: 10pt;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  font-weight: 400;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

h1 {
  font-size: 40pt;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 14pt;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 16pt;
  line-height: 1.4;
}

main {
  display: flex;
  flex-direction: column;
  gap: 50pt;
  padding: 20pt 0;

  font-size: 16pt;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.65em;
}

p {
  line-height: 1.3;
}

section {
  margin: 0 auto;
  max-width: 800pt;
  padding: 0 30pt;
}

strong {
  font-weight: 400;
  color: white;
}

#contact {
  color: white;
  text-align: center;
  text-wrap: balance;
}

#hero {
  display: flex;
  flex-direction: column;
  gap: 20pt;
  padding-top: 40pt;
}
