@charset "UTF-8";
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Inter Light'),
       url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'),
       url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, Arial;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  min-height: 100%;
  background: #F0F0F0;
  color: #1C1C1C;
  font-size: 18px;
  font-weight: 300;
  padding: 0 16px;
  max-width: 800px;
  margin: 4em auto auto;
}
h1 {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 600;
}
h2 {
  font-size: 28px;
  top: 50px;
  line-height: 40px;
  font-weight: 300;
  margin-top: 0;
}
h3 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}
p {
  margin-top: 0;
  line-height: 32px;
}
button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
footer p {
  font-size: 14px;
}
a {
  position: relative;
  overflow: hidden;
  text-decoration-color: #5c5c5c;
  font-weight: 600;
}
a::after {
  content: "→";
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
a:hover {
  color: rgba(255, 69, 0, 0.9);
  text-decoration-color: rgba(255, 69, 0, 0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover::after {
  transform: rotate(0deg);
}
ul {
  list-style-type: none;
  padding: 0;
  line-height: 1.7em;
  margin-top: -16px;
}
::-moz-selection {
  background: rgba(255, 69, 0, 0.9);
  color: #F0F0F0;
}
::selection {
  background: rgba(255, 69, 0, 0.9);
  color: #F0F0F0;
}
@media screen and (min-width: 625px) {
  body {
    font-size: 20px;
  }
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
  }
  h3 {
    font-weight: 600;
  }
  ul {
    margin-top: -20px;
  }
}
.theme-button {
  position: absolute;
  top: 1em;
  right: 1em;
}
.theme-mode {
  background-color: #1C1C1C;
  color: #F0F0F0;
}
.theme-mode .theme-button:after {
  content: "🌖";
}
.theme-mode a {
  color: #8f8f8f;
}
.theme-button:after {
  content: "🌘";
}
#theme-switch {
  cursor: pointer;
  display: inline-block;
  float: right;
  font-size: 2rem;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1C1C1C;
    color: #F0F0F0;
  }
  .theme-button:after {
    content: "🌖";
  }
  a {
    color: #8f8f8f;
  }
  .theme-mode .theme-button:after {
    content: "🌘";
  }
  .theme-mode {
    background-color: #F0F0F0;
    color: #1C1C1C;
  }
  .theme-mode #about a,
  .theme-mode #contact a {
    text-decoration-color: #cfcfcf;
  }
  .theme-mode #about a:hover,
  .theme-mode #contact a:hover {
    text-decoration-color: rgba(255, 69, 0, 0.9);
    color: rgba(255, 69, 0, 0.9);
  }
}
.hand {
  -webkit-animation: shake 0.5s ease-out 3;
          animation: shake 0.5s ease-out 3;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  display: inline-block;
}
.hand:hover {
  -webkit-animation: shake 0.5s ease-out infinite;
          animation: shake 0.5s ease-out infinite;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  80% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  80% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
