@font-face {
    font-family: 'DepartureMono Nerd Font';
    src:  url('/Fonts/DepartureMonoNF-Regular.woff2') format('woff2'),
          url('/Fonts/DepartureMonoNF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* do i still need this? */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("/Assets/Backgrounds/traces.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'DepartureMono Nerd Font', monospace;
  color: #f0f0f0;
  line-height: 1.5;
  text-align: justify;
}

/* HIDE SCROLLBAR */
body::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* NAV BAR */
.navigation_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
}

.navigation_bar a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.navigation_bar a:hover {
  transform: scale(1.1);
}

/* DISCLAIMER */
.disclaimer-title {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFF00;
  text-align: center;
}

.disclaimer-text {
  text-indent: 2em;
}