@import './font-face.css';

:root {
  --font-saol: 'SaolStandard', serif;
  --font-whyte: 'ABCWhyte', sans-serif;
  --font-whyte-mono: 'ABCWhyte-mono', monospace;
  --desktop-width: 1024px;
}

/* Corrected .hide-desktop */
@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Corrected .hide-mobile */
@media (max-width: 1023.98px) {
  .hide-mobile {
    display: none !important;
  }
}

.relative {
  position: relative;
}
