@font-face {
  font-family: "fa-regular";
  src: url("/fonts/fa-regular.woff");
  font-display: swap;
}

@font-face {
  font-family: "fa-brands";
  src: url("/fonts/fa-brands.woff");
  font-display: swap;
}

html {
  --width: 1200px;
  --color-default: #333;
  --color-blue1: #4ac4f3;
  --color-blue2: #a5e2f9;
  --color-blue3: #edf5ff;
  --color-grey1: #ccc;
  --color-grey2: #f7f7f7;
  --block-shadow: 0 0 10px #cccccc;
  --head-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.04);
}

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 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-family: Arial, Helvetica, sans-serif;
}

html body img {
  border: none;
}

html body h2 {
  text-align: center;
  font-size: 30px;
  padding: 0 0 30px;
  margin: 0 0 30px 0;
  position: relative;
  text-transform: uppercase;
}

html body h2::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--color-blue1);
}

html body a {
  color: var(--color-blue1);
  text-decoration: none;
}

html body a:hover {
  text-decoration: underline;
}

html body button {
  cursor: pointer;
}
/*# sourceMappingURL=app.css.map */