@font-face {
  font-family: Stratum;
  font-weight: 400;
  src: url("/assets/fonts/Stratum-Regular.ttf");
}
::-webkit-scrollbar {
  display: none;
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-background: #1b1c21;
  --color-accent: #222831;
}

[class*="--flex"] {
  display: flex;
  flex-wrap: wrap;
}

[class*="--grid"] {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  list-style-type: none;
}

body {
  background-image: url("/assets/image/background.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header__container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 100px 20px 20px 20px;
}
.header__navbar {
  text-align: center;
}
.header__logo {
  height: 100px;
}
.header__items {
  margin: 80px 0px 0px 0px;
}
.header__items--flex {
  justify-content: center;
}
.header__link {
  background-color: var(--color-background);
  border: 2px solid var(--color-white);
  border-radius: 20px;
  color: var(--color-white);
  width: 250px;
  height: 75px;
  font-size: 30px;
  text-transform: uppercase;
  display: block;
  margin: 0px 0px 30px 0px;
  padding: 20px;
  text-align: left;
  font-family: "Stratum", sans-serif;
  line-height: 33px;
}
.header__link:hover {
  background-color: var(--color-accent);
}
.header__icon {
  margin: -5px 10px 0px 0px;
}

@media screen and (max-width: 490px) {
  .header__logo {
    height: 90px;
  }
}
@media screen and (max-width: 440px) {
  .header__logo {
    height: 70px;
  }
}
@media screen and (max-width: 350px) {
  .header__logo {
    height: 60px;
  }
}/*# sourceMappingURL=import.css.map */