body {
    font-family: "Inter", system-ui;
    font-weight: 400;
    background-color: #f2f2f2;
    color: #288DEF;
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
    transition: background-color 0.3s cubic-bezier(0.87, 0, 0.13, 1), color 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    animation: fadeIn 0.5s ease-in;
    letter-spacing: -0.4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
}
}


body.dark {
    background-color: #288DEF;
    color: #f2f2f2;

}
html, body {
    height: 100%;
}
html {
    display: table;
    margin: auto;
}
.link {
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    display: inline-block;
    font-family: "Instrument Serif", serif;
}
.link:hover {
    transform: rotate(3.5deg);
}
.bye {
    transition: font-weight 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    display: inline;
}
.bye:hover {
    font-weight: 900;
}
.headline {
    transition: font-weight 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    position: relative;
    font-weight: 500;
    letter-spacing: -0.6px;
}
.headline:hover {
    font-weight: 900;
}
h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 0.8;
    width: fit-content;
    margin-bottom: 0px;
}
h2 {
    font-weight: 600;
    line-height: 0.8;
    font-size: 22px;
}
h3 {
    font-weight: 600;
    line-height: 1;
}
h4 {
    font-weight: 600;
    line-height: 1;
}
h5 {
    font-weight: 600;
    line-height: 1;
}
h6 {
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}
::-webkit-scrollbar {
    width: none;
}
* {
    scrollbar-width: none;
}
    html.lenis, html.lenis body {
      height: auto;
    }

    .lenis.lenis-smooth {
      scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
      overflow: hidden;
    }
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#theme-toggle {

  cursor: pointer;
  transition: font-weight 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  font-size: 12px;
  display: inline-block;
}

#theme-toggle:hover {
    font-weight: 900;
    font-size: 12px;
}
body .theme-text-dark {
  display: none;
}

body.dark .theme-text-light {
  display: none;
}

body.dark .theme-text-dark {
  display: inline;
}
.tilt {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}
.font {
      transition: font-weight 0.3s cubic-bezier(0.87, 0, 0.13, 1);
    position: relative;
    font-weight: 500;
    letter-spacing: -0.6px;
    font-size: 12px;
    padding-left: 8px;
}
.font:hover {
    font-weight: 900;
}
#fps-counter {
  font-size: 12px;
  opacity: 0.5;
  pointer-events: none;
}
#cursor-coords {
  font-size: 12px;
  opacity: 0.5;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: none) and (pointer: coarse) {
  #cursor-coords {
    display: none;
  }
}