/* Import video-game font */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  text-align: center;
}

nav {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  color: #00eaff;
  font-size: 22px;
  text-decoration: none;
}

nav a:hover {
  text-shadow: 0 0 10px #00eaff;
}

/* Page titles */
h1 {
  font-size: 48px;
  margin-top: 40px;
  text-shadow: 0 0 15px white;
}

/* Paragraph style — enlarged + glowing video-game font */
p {
  font-family: "VT323", monospace;
  font-size: 30px;
  line-height: 1.5;
  width: 80%;
  margin: 0 auto 30px auto;
  text-shadow: 0 0 10px white;
}

/* Image gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px white;
}