* {
  font-family: monospace;
}

body {
  background-color: #f6fafe;
  display: grid;
  place-items: center;
  text-align: center;
  height: 100vh;
  margin: 0;
}

body.text-rows {
  background-color: #f6fafe;
  display: grid;
  place-items: center;
  text-align: center;
  height: 100vh;
  margin: auto 8%;
}
@media (min-width: 900px) {
  body.text-rows {
    width: 700px;
    margin: auto;
  }
}

.center {
  display: grid;
  place-items: center;
  text-align: center;
}

.big-header {
  font-size: 5em;
  color: #002b36;
  margin: 16px;
}
@media (max-width: 300px) and (min-width: 900px) {
  .big-header {
    font-size: 2em;
  }
}

.subtitle {
  font-size: 2em;
  color: #002b36;
  margin: 16px;
}
@media (max-width: 300px) and (min-width: 900px) {
  .subtitle {
    font-size: 0.5em;
  }
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-60 {
  opacity: 0.6;
}

h1 {
  margin: 0;
}

h2 {
  font-size: 3em;
  color: #002b36;
  margin: 16px;
}

h3 {
  font-size: 2em;
  color: #002b3694;
}

p {
  margin: 16px;
}

ul {
  text-align: justify;
}

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

a {
  text-decoration: none;
}
a :hover :active {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */