* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  display: grid;
  grid-template-columns: auto 7.5cm 25cm auto;
  grid-template-rows: auto 2cm;
  grid-template-areas:
    "x header content y"
    "x footer footer y";
  gap: 0.5cm;
  background-color: white;
  color: black;
  font-family: Verdana;
}

header {
  grid-area: header;
}

nav {}

main {
  grid-area: content;
  overflow-x: hidden;
  overflow-y: scroll;
}
  
#gallery {
  /*display: grid;*/
  width: auto;
    padding-top: 1rem;
  /*gap: 1rem;*/
  /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
  /*grid-template-rows: auto;*/
  /*grid-template-areas: "1 2 3 4";*/
  
  img {
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
  }
  
  div {
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }
    
  /*img:nth-child(5n+1){*/
  /*  grid-area: 1;*/
  /*}*/
  /*img:nth-child(5n+2){*/
  /*  grid-area: 2;*/
  /*}*/
  /*img:nth-child(5n+3){*/
  /*  grid-area: 3;*/
  /*}*/
  /*img:nth-child(5n+4){*/
  /*  grid-area: 4;*/
  /*}*/
  /*img:nth-child(5n+5){*/
  /*  grid-area: 5;*/
  /*} */
  
}