@import "fonts/fonts.css";
body {
  --red: #f03d6b;
  --red-light: #f6b5c5;
  --orange: #ffd3b6;
  --blue: #a8e6cf;
  --linkblue: #356cab;
  --linkblue2: #15519b;
  --gradient0: #f48aa5;
  --gradient1: #fadbc6;
  --gradient2: #e5f6ca;
  --gradient3: #d1f6e8;
}
body.alternate {
  --red: #3d46f0;
  --red-light: #b5bfef;
  --gradient0: #c1a4f3;
  --gradient1: #c6d8fa;
  --gradient2: #d1f2f6;
  --gradient3: #d1f6e8;
}
html {
  --background: #fdfbfa;
  --foreground-light: #68626c;
  --foreground: #2c2b2d;
  --foreground-dark: #050102;
  background-image: radial-gradient(circle at 1px 1px, #6970724f 1px, transparent 0), url("media/paper.jpg");
  background-size: 2rem 2rem, 1000px auto;
  background-position: 1rem 1rem, center;
  color: var(--foreground);
  font-family: 'Outfit', Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  padding: 2rem 0 0 2rem;
  margin: 0;
  overflow-x: hidden;
  white-space: normal;
}
h1 {
  font-size: 2.9rem;
  font-weight: 600;
  display: inline-block;
  vertical-align: bottom;
  margin: 0;
}
h1 span:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
}
h2 {
  font-style: normal;
  line-height: 2rem;
  margin: 2rem 0.125rem 0;
}
h1 span,
h2 span {
  color: var(--red);
}
ul {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
  line-height: 1.5rem;
}
.emphasis {
  color: var(--foreground-dark);
  font-weight: 400;
  font-style: normal;
}
.light {
  font-style: italic;
  display: inline-block;
  color: var(--foreground-light);
}
br + .light {
  margin-left: 1rem;
}
.content {
  margin-top: -1.3rem;
  margin-left: 0.35rem;
  width: calc(100% - 1rem);
}
.content .intro img {
  display: inline-block;
  height: 3rem;
  transition: transform 0.5s ease-in-out;
  margin-left: 1rem;
}
.content .intro img.flip {
  transform: rotateY(180deg);
}
.content .intro .accounts {
  margin-top: -0.33rem;
}
.content .intro .accounts span {
  display: inline-block;
  margin-left: 1rem;
  vertical-align: top;
}
.content .intro .accounts span.pronouns {
  color: var(--foreground-light);
  margin-left: -0.125rem;
}
.content .intro .accounts span span {
  margin-left: 0.25rem;
  vertical-align: top;
  transition: color 0.1s ease-out;
}
.content .intro .accounts span a:has(svg:hover) ~ span {
  color: var(--red);
}
.content .intro .accounts a {
  text-decoration: none;
  cursor: pointer;
}
.content .intro .accounts a:not([href]) {
  cursor: default;
}
.content .intro .accounts a svg {
  fill: var(--foreground);
  transition: fill 0.1s ease-out;
}
.content .intro .accounts a svg:hover {
  fill: var(--red);
}
.content .section:nth-child(1) {
  opacity: 0;
  animation: fadeIn ease-out 3s 0s forwards;
}
.content .section:nth-child(2) {
  opacity: 0;
  animation: fadeIn ease-out 3s 0.4s forwards;
}
.content .section:nth-child(3) {
  opacity: 0;
  animation: fadeIn ease-out 3s 0.8s forwards;
}
.content .section:nth-child(4) {
  opacity: 0;
  animation: fadeIn ease-out 3s 1.2s forwards;
}
.content .section:nth-child(5) {
  opacity: 0;
  animation: fadeIn ease-out 3s 1.6s forwards;
}
footer {
  margin: 2rem 0 1.5rem 0.45rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn ease-out 3s 2s forwards;
}
.colour-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 1.2rem;
  background: linear-gradient(180deg, var(--gradient0), var(--gradient1), var(--gradient2), var(--gradient3));
  z-index: 5;
}
a.fancy {
  font-style: normal;
  color: var(--linkblue);
  text-decoration: none;
  transition: color 0.1s ease-out;
}
a.fancy:visited {
  color: var(--linkblue2);
}
a.fancy:hover {
  text-decoration: underline;
  color: var(--red);
}
@media (prefers-reduced-motion) {
  * {
    transition: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }
  .section,
  footer {
    opacity: 1;
    animation: none !important;
  }
  .content .intro img.flip {
    transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*# sourceMappingURL=styles.css.map */