@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Light';
  src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
#navTrigger {
  position: fixed;
  top: 3.5%;
  left: 2.5%;
  width: 24px;
  height: 48px;
  background: black;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1001;
  cursor: pointer;
}
#sidebarPanel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1002;
  padding: 80px 30px;
  box-sizing: border-box;
  color: white;
}
#sidebarPanel .nav-item {
  font-size: 18px;
  margin-bottom: 20px;
  cursor: pointer;
  text-align: right;
  font-family: 'Bebas Neue', sans-serif;
}
#sidebarPanel .nav-item a {
  color: white;
  text-decoration: none;
} 