@import url("https://fonts.googleapis.com/css?family=Exo+2:400,800,700,600,500,300");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica', sans-serif;
  font-weight: 100;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
  min-height: 100vh;
}
header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 3rem 0rem;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}
nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
nav a {
  color: #333;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: font-weight 0.3s ease-in-out;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  min-width: 8rem;
}
nav a span {
  display: block;
  position: relative;
  z-index: 1;
}
main {
  background-color: #f8f8f8;
  width: 100%;
}
main section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
h1 {
  font-size: 1.8rem;
  color: #222;
  font-weight: 700;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}
h1 a,
h1 em {
  text-decoration: none;
  color: color(srgb 0.8245 0.0971 0.4644);
}
h1 p {
  text-align: center;
  max-width: 28em;
  margin: 1.4em auto 0em auto;
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  max-width: 175px;
}
@media (min-width: 769px) and (max-width: 1270px) {
  nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem;
    min-width: 60px;
  }
}
@media (max-width: 768px) {
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
  }
  body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
  h1 {
    margin-bottom: 0.5rem;
  }
  nav {
    margin: 2rem auto;
  }
  a {
    border: none;
    font-weight: 600;
    font-size: 1rem;
    color: #555;
    background: #f9f9f9;
    touch-action: manipulation;
    box-shadow: 3px 4px 10px 0px rgba(0,0,0,0.1);
    line-height: 1.8;
  }
  a:active {
    background-color: #eee;
    transform: scale(0.98);
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  nav a {
    opacity: 0;
  }
  nav a.fade-in {
    animation: fadeIn 0.4s ease-in forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
  }
@-moz-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@-o-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
}
@media (min-width: 768px) {
  nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 4rem;
  }
  a {
    width: auto;
  }
  a:hover {
    font-weight: 700;
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  nav a:nth-child(3n+1):hover span {
    animation: glitch1 0.5s 1 linear;
  }
  nav a:nth-child(3n+2):hover span {
    animation: glitch2 0.5s 1 linear;
  }
  nav a:nth-child(3n+3):hover span {
    animation: glitch3 0.5s 1 linear;
  }
@-moz-keyframes glitch1 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    5% {
      transform: translate(6px, -4px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    10% {
      transform: translate(-4px, 3px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
    15% {
      transform: translate(5px, -5px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    20% {
      transform: translate(-6px, 2px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
}
@-webkit-keyframes glitch1 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    5% {
      transform: translate(6px, -4px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    10% {
      transform: translate(-4px, 3px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
    15% {
      transform: translate(5px, -5px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    20% {
      transform: translate(-6px, 2px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
}
@-o-keyframes glitch1 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    5% {
      transform: translate(6px, -4px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    10% {
      transform: translate(-4px, 3px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
    15% {
      transform: translate(5px, -5px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    20% {
      transform: translate(-6px, 2px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
}
@keyframes glitch1 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    5% {
      transform: translate(6px, -4px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    10% {
      transform: translate(-4px, 3px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
    15% {
      transform: translate(5px, -5px);
      text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }
    20% {
      transform: translate(-6px, 2px);
      text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9;
    }
}
@-moz-keyframes glitch2 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    4% {
      transform: translate(-5px, 3px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    9% {
      transform: translate(7px, -2px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
    14% {
      transform: translate(-3px, 6px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    19% {
      transform: translate(5px, -3px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
}
@-webkit-keyframes glitch2 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    4% {
      transform: translate(-5px, 3px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    9% {
      transform: translate(7px, -2px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
    14% {
      transform: translate(-3px, 6px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    19% {
      transform: translate(5px, -3px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
}
@-o-keyframes glitch2 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    4% {
      transform: translate(-5px, 3px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    9% {
      transform: translate(7px, -2px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
    14% {
      transform: translate(-3px, 6px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    19% {
      transform: translate(5px, -3px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
}
@keyframes glitch2 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    4% {
      transform: translate(-5px, 3px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    9% {
      transform: translate(7px, -2px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
    14% {
      transform: translate(-3px, 6px);
      text-shadow: -2px 0 #0fa, 2px 0 #f70;
    }
    19% {
      transform: translate(5px, -3px);
      text-shadow: 2px 0 #0fa, -2px 0 #f70;
    }
}
@-moz-keyframes glitch3 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    6% {
      transform: translate(3px, 5px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    11% {
      transform: translate(-6px, -4px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
    16% {
      transform: translate(4px, 2px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    21% {
      transform: translate(-5px, -5px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
}
@-webkit-keyframes glitch3 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    6% {
      transform: translate(3px, 5px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    11% {
      transform: translate(-6px, -4px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
    16% {
      transform: translate(4px, 2px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    21% {
      transform: translate(-5px, -5px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
}
@-o-keyframes glitch3 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    6% {
      transform: translate(3px, 5px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    11% {
      transform: translate(-6px, -4px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
    16% {
      transform: translate(4px, 2px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    21% {
      transform: translate(-5px, -5px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
}
@keyframes glitch3 {
    0%, 25%, 100% {
      transform: translate(0);
      text-shadow: none;
    }
    6% {
      transform: translate(3px, 5px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    11% {
      transform: translate(-6px, -4px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
    16% {
      transform: translate(4px, 2px);
      text-shadow: -2px 0 #e91e63, 2px 0 #64ffda;
    }
    21% {
      transform: translate(-5px, -5px);
      text-shadow: 2px 0 #e91e63, -2px 0 #64ffda;
    }
}
}
