body {
    font-family: 'Courier New', monospace; /* 80s computer terminal feel */
    background-color: #1a1a1a; /* Dark background */
    color: #00ff00; /* Green text, like a CRT screen */
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #333;
    padding: 20px 0;
    border-bottom: 5px dotted #00ff00;
}

h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px #000; /* Add a shadow for depth */
}

main {
    padding: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.photo-item {
    margin: 10px;
}

.photo-item img {
    width: 200px;
    height: auto;
    border: 3px double #00ff00;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item img:hover {
    transform: scale(1.1);
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox.hidden {
    display: none;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #00ff00;
}

#close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3em;
    color: #00ff00;
    cursor: pointer;
}

/* 80s inspired font and colors */
body {
  font-family: monospace;
  background-color: black;
  color: lime;
}

h1 {
  font-family: 'Press Start 2P', cursive; /*Pixelated font*/
  color: magenta;
  text-shadow: 2px 2px 4px #000;
}

.photo-item img {
  border: 4px dashed cyan;
}

#lightbox-img {
  border: 4px dotted yellow;
}