@charset "utf-8";

:root {
  --primary: #00a0ff;
  --secondary: #002040;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #000000;
  overflow-x: hidden;
}
@font-face {
  font-family: headline;
  src: url("../fonts/AvenirNextLTPro-Bold.otf");
}
@font-face {
  font-family: body-text;
  src: url("../fonts/AvenirNextLTPro-Regular.otf");
}
a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
  font-weight: bolder;
}
a:hover {
  color: white;
}

/* MOBILE ADJUSTMENTS */

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 575px) {
}

@media only screen and (max-width: 375px) {
}
