@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Astrados";
  src: url("/assets/fonts/astrados/Astrados.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Akrobat";
  src: url("/assets/fonts/akrobat/Akrobat-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Technology";
  src: url("/assets/fonts/technology/Technology.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #000;
}

* {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.tablet-desktop {
  display: block;
}

.tablet {
  display: none;
}

@media (max-width: 1024px) {
  .tablet-desktop {
    display: none;
  }

  .tablet {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}
