@font-face {
  font-family: 'OPTILatin-Bold';
  src: url('../fonts/OPTILatin-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: black; 
  color: white; 
  font-family: 'OPTILatin-Bold', sans-serif;
  margin: 20px; 
  letter-spacing: 0.08em;
}

a {
  color: #00ff00;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: white;
  border-bottom: 1px solid #00ff00;
}

h1, h2 {
  margin-top: 30px;
  font-family: 'OPTILatin-Bold', sans-serif;
  color: white;
  letter-spacing: 3px;
}

strong {
  margin-top: 30px;
  font-family: 'OPTILatin-Bold', sans-serif;
  color: white;
  letter-spacing: 0.08em;
}

button {
  background-color: #002200;
  color: #00ff00;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  outline: 1px solid white;
  transition: all 0.2s ease-in-out;
}

button:hover {
  color: white;
  border-bottom: 1px solid #00ff00;
  background-color: #004400;
}

#navMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 40px;
  background: #000000;
  z-index: 999;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.4s ease-in-out;
  margin: 0;
  padding: 20px;
  list-style: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#navMenu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hamburger-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  cursor: pointer;
  background: black;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn img {
  display: block;
  width: 24px;
  height: auto;
}
