/* navbar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
    /* chang colour */
  li a:hover {
    background-color: rgb(72, 223, 79);
  }
  /* navbar end*/

  /*  web responsive */
.flexbox-container{
    display: flex;
    border-color: black;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background-color: bisque;
  }
  .flexbox{
    display: flex;
    padding: 10px;
    margin: 10px;
    position: static;
    height: 400px;
    width: 400px;
    
  }

  
  /* end web responsive */

  /* photo responsive */


  div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    height: 300px;
    
  }
  
  div.gallery:hover {
    border: 1px solid red;
    cursor: pointer;
  }
  div.gallery img {
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: white;
  }
  
  div.desc {
    padding: 1px;
    text-align: center;
    color: black;
    font-size: 10 px;
  }
/*end photo responsive */

/* photo gallary */


/* end photo gallary */