.page-module___8aEwW__page {
  background: var(--background);
  color: var(--foreground);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: PepeFont, sans-serif;
  display: flex;
}
.page-module___8aEwW__h1 {
  font-size: 3rem;
}
@media (prefers-color-scheme: dark) {
  .page-module___8aEwW__page {
    color: #a02e00;
    background: #156d30;
  }
}
@font-face {
  font-family: PepeFont;
  src: url(/fonts/GentyDemo-Regular.ttf) format("truetype"),
    url(/fonts/GentyDemo-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: SecondaryFont;
  src: url(/fonts/Comfortaa-VariableFont_wght.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: ThirdFont;
  src: url(/fonts/Evermore.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --background: #FFF;
  --foreground: #a02e00;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #FFF;
    --foreground: #a02e00;
  }
}
html,
body {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: PepeFont, sans-serif;
  color: var(--foreground) !important;
  background-color: var(--background) !important;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  html,
  body {
    color: #6cb947;
    background: #156d30;
  }
}
