@font-face {
  font-family: 'fishhawk';
  src: url('fonts/fishhawk.woff2') format('woff2'),
       url('fonts/fishhawk.woff') format('woff'),
       url('fonts/fishhawk.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fishhawk1';
  src: url('fonts/fishhawk1.woff2') format('woff2'),
       url('fonts/fishhawk1.woff') format('woff'),
       url('fonts/fishhawk1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'fishhawk', monospace;
  color: #000;
  margin: 60px;
  padding: 60px;
  background-image: url('photos/summer5.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-color: #253D2C;
}


.container {
  width: 750px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffffcc;
  border: 2px solid #000088;
  box-shadow: 5px 5px #888;
}

header h1 {
  font-size: 28px;
  color: #004080;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
  background-color: #e0f0ff;
  border: 1px solid #000088;
}

nav ul li a {
  text-decoration: none;
  color: #000088;
  font-weight: bold;
  padding: 8px;
}

main {
  font-size: 16px;
  line-height: 1.5;
}

footer {
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
}

.flex-row {
  display: flex;
  gap: 35px; /* space between the dropdowns */
}

.dropdown {
  min-width: 150px;
}

.pixel-dropdowns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px;
}

.dropdown {
  background: url('your-pixel-background.png') repeat;
  border: 2px solid #222;
  padding: 10px;
  font-family: 'fishhawk', monospace;
  width: 200px;
  box-shadow: 4px 4px 0 #000;
  border-radius: 0; /* keep it boxy */
}

.dropdown summary {
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  background-color: #e0e0e0;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Remove the default dropdown arrow */
.dropdown summary::-webkit-details-marker {
  display: none;
}

.icon {
  width: 16px;
  height: 16px;
  image-rendering: pixelated;
}

nav ul li {
  text-align: center;
  margin-bottom: 15px;
}
nav ul li img {
  display: block;
  margin: 5px auto 0 auto;
}

.pixel-box {
  background-color: #1a1a1a;
  color: #00ffcc;
  font-family: 'fishhawk', monospace;
  padding: 15px;
  border: 2px solid #00ffcc;
  margin: 20px auto;
  width: fit-content;
}
    .home-button {
  position: fixed;
  top: 16px;  /* distance from bottom of the screen */
  right: 16px;   /* distance from right edge — or use left: 16px for bottom-left */
  z-index: 1000; /* ensures it's on top of other elements */
}

.home-button img {
  width: 64px;
  height: auto;
  transition: transform 0.2s ease;
  cursor: pointer;
  image-rendering: pixelated; /* keeps it crisp if it's pixel art */
}

.home-button img:hover {
  transform: scale(1.1) rotate(-2deg);
}

    .home-button1 {
  position: fixed;
  top: 16px;  /* distance from bottom of the screen */
  left: 16px;   /* distance from right edge — or use left: 16px for bottom-left */
  z-index: 1000; /* ensures it's on top of other elements */
}

.home-button1 img {
  width: 64px;
  height: auto;
  transition: transform 0.2s ease;
  cursor: pointer;
  image-rendering: pixelated; /* keeps it crisp if it's pixel art */
}

.home-button1 img:hover {
  transform: scale(1.1) rotate(-2deg);
}

