body {
    background-color: #000000;
    color: #00FF00;
    font-family: "Courier New", Courier, monospace;
    background-image: url('data:image/gif;base64,R0lGODlhCgAKAIABAAAAAP///yH5BAEAAAEALAAAAAAKAAoAAAIWjI+py+0Po5y02ouz3rz7D4biSJZiUAAAOw=='); /* subtle static dot pattern */
    margin: 20px;
}
h1 {
    color: orange;
    text-align: center;
    text-shadow: 2px 2px brown;
    text-transform: uppercase;
}
nav {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px double orange;
    padding-bottom: 10px;
}
.btn {
    background-color: brown;
    color: orange;
    border: 2px solid #FFFFFF;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}
.btn:hover {
    background-color: #FF0000;
    color: #FFFFFF;
}
details {
    background: #222;
    border: 1px dashed #00FFFF;
    margin-bottom: 10px;
    padding: 10px;
}
summary {
    color: #FFFF00;
    font-weight: bold;
    cursor: pointer;
}
p { 
    margin-top: 10px; 
    color: #FFFFFF;
}

.tiny {
  display: block;
  margin: 0px auto;
  width: 150px;
  
}

.center {
  text-align: center;
}

.small {
  width: 200px;
  
}
  
  
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.image-gallery img {
    width: 200px;
    height: auto;
    border: 2px solid #00FFFF;
}  



hr {
    border: none; /* Strips the ugly default browser shading */
    border-top: 2px dashed orange; /* Classic neon pink dashed line */
    margin: 20px 0; /* Gives it some breathing room top and bottom */
}

a:link {
    color: #00FF00; /* Terminal Green */
    text-decoration: none; 
}

a:visited {
    color: #FF8800; /* Terminal Orange */
}

a:hover {
    color: #FFFFFF; /* High-contrast white when the mouse hovers over it */
    text-decoration: underline;
}

.img-med {
  width:100px;
  height: auto;
  border: 2px solid orange;
}