body {
     background-color: #b9d9b6; 
      margin: 0;
      font-family: georgia;
       font-size: 8pt;
            line-height: 1.3;     
    }

    /* 상단 네비게이션 */
    .nav {
      text-align: center;
     padding: 50px;
      
    }

    .nav a {
         margin: 0 30px;
      text-decoration: none;
        color: #41a97f; 
      font-weight: bold;
    font-size: 8pt;
    }
    
     .nav a:hover {
       text-decoration: underline;
    }

   .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  max-width: 800px;
  margin: 20px auto;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
}


}

