body {
    background-color: #22b2b2;
    margin: 0;
    /* display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; */
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 10px 20px;
  background-color: #B22222;
  border: 1px solid black; 
  font: black;
}

.header:hover {
  width: calc(95%);

}

#Logo {
  
  width: 125px;
  height: 125px;
  margin-right: auto;
  margin: -30px 0px -15px 0;
  
}

.nav-list {
  justify-content: flex-start;
  list-style: none;
  padding: 1rem;
 
}

.nav-list ul {
    list-style: none;
    display: flex;
}

.nav-list ul li {
  margin: 0 40px 0 40px;
}

.nav-list ul li a {
  box-shadow: inset 0 0 0 0 #22b2b2;;
  color: black;
  padding: 0 .25rem;
  margin: 0 -.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  text-decoration: none;
  font-size: 2rem;
}

.nav-list a:hover {
  color: #fff;
  box-shadow: inset 200px 0 0 0 #22b2b2;
  border-radius: 8px;
}
main {
  
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    max-width: 600px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.image-grid img {
    width: calc(50% - 10px);
    height: auto;
    object-fit: cover;
}
