html {
  scroll-behavior: smooth;
  background: #e9eee9;
}

body {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #3a393a;
}
body p {
  margin: 0 0 0.25em 0;
  line-height: 1.3;
  color: #3a393a;
}
body p + p {
  margin-top: 1em;
}
body a {
  text-decoration: none;
  background: none;
  transition: 0.2s;
}
body span {
  color: #f190d2;
  margin: 0;
  padding: 0;
}
body p > span {
  display: inline-block;
  border-bottom: 2px dashed #f190d2;
}
body button {
  font-size: 1.5em;
}
body h1 {
  color: #ff6c18;
  margin: 0;
  padding: 0;
}
body h2 {
  color: #ffac4d;
  font-size: 2em;
  text-align: right;
  font-weight: normal;
  padding: 0;
  margin: 0;
  transition: 0.3s;
  transition-timing-function: ease;
}
body h2:hover {
  color: #ff6c18;
}

.clickable {
  color: #ff971a;
  position: relative;
}
.clickable::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 97%;
  height: 0.2em;
  background: #ff6c18;
  opacity: 0.35;
  transition: 0.15s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.clickable:hover {
  color: white;
}
.clickable:hover::before {
  opacity: 0.8;
  height: 1.1em;
}

.outgoing {
  color: #f190d2;
  position: relative;
}
.outgoing::before {
  content: "";
  position: absolute;
  bottom: 0.08em;
  width: 0;
  height: 1.1em;
  background: #ff6c18;
  opacity: 0.35;
  transition: 0.15s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.outgoing:hover {
  color: white;
}
.outgoing:hover::before {
  background: #f190d2;
  opacity: 0.8;
  width: 100%;
}

.header {
  margin: 20em auto 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
}
.header .links {
  font-size: 2em;
  margin-right: 1em;
  margin-top: 0.5em;
  text-align: right;
}
.header .links .link::before {
  bottom: 0.1em;
  width: 100%;
  height: 0.3em;
}
.header .links .link:hover::before {
  height: 1.1em;
}
.header .about-me .blurb {
  font-size: 1.25em;
  text-align: justify;
  margin-top: 0.75em;
  width: 80%;
}
.header .about-me #name {
  font-size: 6.3em;
  display: inline;
}

section {
  margin: 0 0 4em 0;
}
section .sectionname {
  margin-bottom: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section > div {
  max-width: 900px;
  margin: auto;
}
section p {
  font-size: 1.3em;
  text-align: justify;
}

.accordion .panel {
  cursor: pointer;
  border: none;
  text-align: left;
  margin: 1em 0 0 0;
  background-color: #e9eee9;
  outline: none;
  transition: 0.3s;
  z-index: 0;
  position: relative;
}
.accordion .expandable {
  width: 90%;
  margin: 1em auto 1em auto;
  max-height: 6em;
  overflow: hidden;
  transition: 0.6s;
}
.accordion .fadeout {
  background: -webkit-linear-gradient(#3a393a, rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accordion .halfwidth {
  max-width: 60%;
}
.accordion img {
  margin: 1.5em auto 1.5em auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
  max-width: 100%;
  overflow: visible;
  transition: all 0.4s ease-out;
}
.accordion img:hover {
  transform: scale(1.02);
}

#loader {
  cursor: pointer;
  transition: all 0.15s ease-out;
  border: none;
}

#loader:hover {
  color: #ff7be5;
}

.loading {
  opacity: 30%;
}

#work {
  margin-top: 15em;
}

.footer {
  text-align: center;
  width: 90%;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 15px;
  }

  .header {
    margin: 20em 0 0 5em;
  }

  section > div {
    max-width: 86%;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 760px) {
  body {
    font-size: 12px;
  }
  body p, body h2 {
    line-height: 1.5;
  }
  body h1 {
    font-size: 2em;
  }

  .header {
    flex-direction: column-reverse;
    margin: 10em 2em 0 2em;
    text-align: left;
  }
  .header .links {
    text-align: left;
  }
}

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