/* Body */
body {
    background-image: url(croch.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 0;
    font-family: "Cal Sans", sans-serif;
}

/* Navbar */
.nav {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px 20px 50px;
}

ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0px 50px 20px 50px;
    font-family: "Cal Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px grey;
}

li {
    padding-left: 40px;
}

a {
    color: #A86523;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

a:hover {
    transform: scale(1.3);
    color: #d2a170;
}

.logo {
    height: 120px;
    width: auto;
    margin-top: 10px;
}


.title {
    text-align: center;
    margin-top: 30px;
    font-size: 36px;
    color: #A86523;
    text-shadow: 1px 1px 3px grey;
}
.imglist{
    padding: 50px 50px;
  }
  .imglist img{
    height: 400px;
    border-radius: 15px;
    box-shadow: 1px 1px 10px white;
    
  }
  .imglist ul{
    justify-content: center;
  }
  .imglist li{
    padding-left: 80px;
  }
  .imglist p{
    color: white;
    text-shadow: 1px 1px 25px black;
    text-align: center;
    position: absolute;
  }


  @media (max-width: 768px) {
    .nav {
      flex-direction: column;
      align-items: center;
      padding: 10px 20px;
    }
  
    ul {
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
  
    li {
      padding: 10px 0;
    }
  
    .logo {
      height: 80px;
      margin: 10px 0;
    }
  
    .title {
      font-size: 24px;
      margin-top: 20px;
      padding: 0 10px;
    }
  
    .imglist {
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .imglist img {
      height: auto;
      width: 100%;
      max-width: 300px;
    }
  
    .imglist ul {
      flex-direction: column;
      padding: 0;
      align-items: center;
    }
  
    .imglist li {
      padding: 10px 0;
    }
  
    .imglist p {
      position: static;
      font-size: 16px;
      margin-top: 10px;
    }
  }
  
