  body {

background-image: url("backgrounds/bg.jpg");
color: red;
border-style: solid;
border-width: 1px;
border-color: white;
font-family: 'Consolas', 'Courier New', monospace;



}
  
  
  
  
  
  
  .container {
    
    
  
  display: grid;
  
  
  grid-template-areas:
    "header header"
    "content content"
    "footer footer";
  grid-template-columns: repeat;
  
 
}
.container div {
  
  
  background-color: black;
  padding: 5px;
   text-align: center;
}
.container .header {
  grid-area: header;
  text-align: center;
}






.container .content {
  border-style: solid;
border-width: 1px;
border-color: white;
  grid-area: content;
 
}

.container .menu {
  grid-area: menu;
}

.container .footer {
  grid-area: footer;
  text-align: center;  
}


.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: blue;
  color: white;
}

.topnav a.active {
  background-color: green;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: left;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}



/* Grid layout */ .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 80%; margin: auto; }
.gallery2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 80%; margin: auto; } 

/* Square thumbnails */ .thumbnail { width: 100%; border: 1px solid gray; /* Gray border */ aspect-ratio: 1 / 1; /* forces square */ object-fit: cover; /* crops image nicely */ cursor: pointer; transition: 0.3s; 
  border-style: solid;
border-width: 1px;
border-color: white
}

.thumbnail2 { width: 100%;
 aspect-ratio: 1 / 1; /* forces square */ object-fit: cover; /* crops image nicely */ cursor: pointer; transition: 0.3s; 
  border-style: solid;
border-width: 1px;
border-color: white
}




.thumbnail:hover { opacity: 0.5; }

/* Overlay */ .overlay { display: none; position: fixed; z-index: 999; left: 0; top: 0%; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); } 

.overlay img { margin: auto; display: block; max-width: 100%; max-height: 100%; }

.close { position: absolute; top: 20px; right: 40px; color: white; font-size: 40px; cursor: pointer; }



@media screen and (max-width: 600px) {
  .gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 100%; margin: auto; } 
  .gallery2 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 10px; max-width: 80%; margin: auto; }
}




  