* {
  box-sizing: border-box;
}
#root,
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}
body {
  background-color: #fff;
  background-color: var(--background-color, #fff);
  color: #000;
  color: var(--text-color, #000);
  font-family: ITCAvantGardeGothicLtDemi, sans-serif;
  overflow: auto;
}
@font-face {
  font-family: ITCAvantGardeGothicLtDemi;
  src: url(../media/ITC%20Avant%20Garde%20Gothic%20LT%20Demi.ttf)
    format("truetype");
}
svg {
  font-size: 150px;
  -webkit-user-select: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  svg {
    font-size: 120px;
  }
}
@media screen and (max-width: 480px) {
  svg {
    font-size: 90px;
  }
}
:root {
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.app {
  min-height: 100vh;
}
section {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
}
.hero-section {
  justify-content: center;
  text-align: center;
}
.hero-section h1 {
  font-size: 10rem;
  font-weight: 700;
  margin: -30px 0 0;
  pointer-events: none;
  position: absolute;
  transition: font-size 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .hero-section h1 {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-section h1 {
    font-size: 8rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-section h1 {
    font-size: 6rem;
  }
}
#home h1 {
  font-size: 105px;
  font-weight: 400;
  margin: -23px 0 0 -2px;
  padding: 0;
  pointer-events: none;
  position: absolute;
  transition: font-size 0.3s ease-in-out;
}
#home {
  overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #121212;
    --navbar-background-color: #121212dd;
    --text-color: #eee;
  }
}

