body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #1b1e6a;
    color: white;
  }

  img{
    width: 100%;
  }
  
  .navbar {
    display: flex;
    background-color: #6b63b5;
    padding: 10px 0;
    justify-content: space-around;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
  }
  
  .container {
    padding: 40px 20px;
    text-align: center;
  }
  
  .headline {
    font-size: 28px;
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .subheadline {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .large-img {
    background-color: lightgray;
    width: 500px;
    height: 350px;
  }

  .slarge-img {
    background-color: lightgray;
    width: 700px;
    height: 550px; 

  }
  
  .fdescription {
    max-width: 400px;
    font-size: 16px;
    text-align: left;
  }

  .sdescription {
    max-width: 400px;
    font-size: 16px;
    text-align: left;
  }
  
  .gallery {
    display: grid;
    justify-content: center;

    gap: 1.44rem;
    /* flex-wrap: wrap; */

    padding: 5rem 0 12rem;
    
  }
  
  .small-img {
    width: 300px;
    height: 250px; 
  }
  .fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .small-img:hover {
    transform: scale(1.05);
  }

  .small-img img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;*/
    border-radius: 20px;
  }
    body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #1b1e6a;
  color: white;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  background-color: #6b63b5;
  padding: 10px 0;
  justify-content: space-around;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.container {
  padding: 40px 20px;
  text-align: center;
}

.headline {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 10px;
}

.subheadline {
  font-size: 20px;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
}



.large-img {
  background-color: lightgray;
  width: 500px;
  height: 350px;
  border-radius: 20px;
}

.description {
  max-width: 400px;
  font-size: 16px;
  text-align: left;
}

/* .gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  margin-top: 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  grid-template-columns: 1fr 1fr 1fr;
} */


@media screen and (min-width: 600px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 900px) {

  .gallery {
    /* grid-template-columns: repeat(3, 1fr); */
  }
}

@media screen and (min-width: 1100px) {

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}