/* Base Styles */
body {
  background-color: black;
  color: #00FF00;
  font-family: 'Press Start 2P', monospace;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Container */
.container {
  width: 80%;
  max-width: 800px;
  text-align: center;
  border: 2px solid #00FF00;
  padding: 20px;
  box-shadow: 0 0 10px #00FF00;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 10px;
}

.navbar a {
  text-decoration: none;
  color: #00FF00;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00CC00;
}


main p {
  font-size: 1.2em;
  line-height: 1.5;
  max-width: 600px;
}

/* Footer */
footer {
  margin-top: 20px;
  border-top: 1px solid #00FF00;
  padding-top: 10px;
}

/* Main Content */
main {
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    gap: 20px; /* Space between the title and photo */
}

main h1 {
    font-size: 2em;
    margin: 0; /* Remove any extra margin */
}

.photo-box {
    border: 2px solid #00FF00;
    padding: 10px;
    display: inline-block;
    margin-bottom: 0; /* Remove margin bottom, since we're using flexbox */
    box-shadow: 0 0 10px #00FF00;
}

.photo-box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

