div.gallery {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding-top: 5%;
  }
  
  div.gallery:hover {
    border: 1px solid black;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    
    padding: 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    background-color: black;
    color: white;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    margin-bottom: 10px;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
    .text{
      position: relative;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
    .text p{
      font-size: 20px;
    }
    
  }
  .view{
    margin-top: 2%; 
    margin-bottom: 2%;
    width: 100%;
    padding-top: 30px;
    position: relative;
    border-style: solid;
    border-radius: 10px;
    border-color: #0000000e;
}

img{
    width: 50%;
    border-radius: 10px;
    display: table;
    height: auto;
}
ul {
  list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(45, 45, 45);
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  padding-left: 20px;
  text-decoration: none;
  font-family: sans-serif;
}



.active {
  background-color: rgb(245, 228, 73);
  font-family: sans-serif;
  color: black;
}
.active:hover{
  background-color: rgb(255, 244, 145);
}
.text{
  position: absolute;
  top: 40%;
  right: 5%;
  width: 50%;
  margin-right: 0;
  margin-left: 10%;
  text-align: center;
  font-size: 18px;
  
}
.text p{
  font-size: 2vw;
  font-family: sans-serif;
}