body {
  background-color: hsl(0, 0%, 10%);
  color: white;
  font-family: "Red Hat Text", sans-serif;
  padding-block: 3rem;

  --accent: #72BCCC;
}

* {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Red Hat Display", "Red Hat Text", sans-serif;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
}

h1 {
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
}

.FYI {
  width: 60%;
  margin-inline: auto;
  color: #cbcbcb;
  background-color: #262626;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 800px) {
  .FYI {
    width: 90%;
    margin-top: 2rem;
  }
}


p {
  width: min(60ch, 95%);
  font-size: 1.25rem;
  line-height: 150%;
  color: hsl(0,0%,95%);
}

p.subtitle{
  translate: 0 -.5rem;
  color: hsl(0,0%,85%);
}

a {
  font-weight: 500;
  display: inline-block;
  --size-h: .3rem;
  --size-v: .2rem;
  padding: var(--size-v) var(--size-h);
  margin: calc(var(--size-v) * -1) calc(var(--size-h) * -1);
  transition: all 0.2s;
  width: fit-content;
  position: relative;
  color: #eaeaea;
  text-decoration-color: #eaeaea;
}
a:before {
  content: "";
  background-color: var(--accent);
  position: absolute;
  inset: 0;
  scale: 0;
  opacity: 0;
  z-index: -1;
  border-radius: 0.3rem;
  transition: scale 0.2s ease-in-out, opacity 0.2s ease-in-out;
  filter: brightness(90%);
}
a:hover {
  color: white;
  text-decoration-color: transparent;
}
a:hover::before {
  scale: 1;
  opacity: 1;
}

.content {
  padding-left: 20vw;
}
@media screen and (max-width: 800px) {
  .content {
    padding-left: 5%;
  }
}

section.filmmaking{
  --accent: #FBBA40;
}
section.webdev{
  --accent: #FD8BA5;
}
section.outdoors{
  --accent: #ABF658;
}

.back {
  position: fixed;
  height: 2.5rem;
  top: 0.5rem;
  left: 0.5rem;
  margin: 0;
  padding: 0.5rem;
  background-color: hsl(0, 0%, 10%);
  z-index: 100;
  border-radius: 0.5rem;
}
.back img {
  height: 100%;
  width: 100%;
  filter: invert(1);
}

span.gap{
  height: .5rem;
  display: block;
}

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