@import url(app.css);
@import url(header.css);
@import url(main.css);
@import url(footer.css);

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("../fonts/GT-Eesti-Display-Regular.otf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "GT Eesti Pro Display";
  src: url("../fonts/GT-Eesti-Display-Medium.otf");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --primary: #c0c0c0;
  --secondary: #2ef4cc;
  --tertiary: #f1f0f0;
  --background: #14061f;
  --background-light: #200c30;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GT Eesti Pro Display";
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%; /* 15px */
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%; /* 16px */
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

button:hover {
  cursor: pointer;
}
