@font-face {
  font-family: "fa-solid";
  src: url("/fonts/fa-solid.woff");
  font-display: swap;
}
@font-face {
  font-family: "fa-brands";
  src: url("/fonts/fa-brands.woff");
  font-display: swap;
}
html {
  --width: 1200px;
  --color-default: #808080;
  --color-green: #4ecdc4;
  --color-grey1: rgba(40,40,40,0.95);
  --color-grey1-t: rgba(40,40,40,0.7);
  --color-grey2: #ccc;
  --color-grey3: #f5f5f5;
}

@keyframes wheel {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
html {
  height: 100%;
}
html body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: scroll;
  font-family: Arial, Helvetica, sans-serif;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-size: 14px;
  color: var(--color-default);
}
html body * {
  box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-family: Arial, Helvetica, sans-serif;
}
html body img {
  border: none;
  vertical-align: top;
}
html body button {
  cursor: pointer;
}
html body h2 {
  color: var(--color-green);
  text-transform: uppercase;
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: normal;
}
@media (min-width: 0) {
  html body h2 {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  html body h2 {
    font-size: 38px;
  }
}
html body p {
  line-height: 25px;
  margin: 0 0 15px 0;
}
html body p:last-child {
  margin: 0;
}
html body ul {
  margin: 0;
  padding: 0 0 0 20px;
}
html body ul li {
  margin: 0 0 15px 0;
  line-height: 25px;
}
html body ul li:last-child {
  margin: 0;
}
html body a {
  color: var(--color-default);
  text-decoration: underline;
  transition: 0.3s;
  cursor: pointer;
}
html body a:hover {
  color: var(--color-green);
}/*# sourceMappingURL=app.css.map */