@font-face {
  font-family: "DeterminationMono";
  src: url("./fonts/DeterminationMono.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Base page style */
body {
  background-color: black;
  color: white;
  text-align: center;
  font-family: "DeterminationMono", monospace;
  margin: 0;
  padding: 0;
}

/* Navigation bar */
nav {
  padding: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 20px;
}

nav a:hover {
  text-decoration: underline;
}

/* Logo */
.logo {
  display: block;
  margin: 20px auto;
  width: 500px;
  max-width: 80%;
}

/* Screenshot gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery-item img {
  width: 250px;
  height: auto;
  border: 3px solid white;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#lightbox img {
  max-width: 90%;
  height: auto;
}

#lightbox p {
  margin-top: 15px;
  color: white;
}

/* Footer */
footer {
  padding: 10px;
  font-size: 16px;
  color: #bbb;
}
