.galleria{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 70px 20px auto;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.589));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.589));
}
img.resp {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

img.resp:hover {
  -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: scale(1.05);
  -ms-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transform: scale(1.05);
  -moz-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transform: scale(1.05);
  -o-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: drop-shadow(0px 0px 10px black);
          filter: drop-shadow(0px 0px 10px black);
  z-index: 2;
}

.frost3{
  border-radius: 5px;
  padding: 5px;
  width: 100%;
  -webkit-box-shadow: inset 0 0 100px 300px rgba(173, 173, 173, 0.507);
          box-shadow: inset 0 0 100px 300px rgba(173, 173, 173, 0.507);
  color: black;
  padding-bottom: 20px;
  font-weight: 300;
  overflow-wrap: break-word;
}

.noPics{
  width: 90%;
  border-radius: 10px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.116);
  text-align: center;
}
@media all and (max-width: 813px){
  .noPics h4{
    font-size: 1.1em;
  }
  img.resp:hover{
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-filter: none;
            filter: none;
  }
}
      
/*iphone se*/
@media all and (max-width: 330px) {
  img.resp{
    width: 100px;
    height: 100px;
  }
  .galleria{
    margin: 50px 0px auto;
  }
}

  /*telefoni più grandi*/
  @media all and (max-width: 400px) and (min-width: 331px) {
  img.resp{
    width: 110px;
    height: 110px;
  }
  .galleria{
    margin: 50px 0px auto;
  }
}

  /*telefoni più grandi*/
  @media all and (max-width: 750px) and (min-width: 401px) {
  img.resp{
    width: 130px;
    height: 130px;
  }
  .galleria{
    margin: 50px 0px auto;
  }
}