@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
  width: 100%;
  font-family: sans-serif;
  font-size: 18px;
    background: url(../img/pochemu-sushi.jpg) no-repeat #f3edf4;
    background-size: cover;

}
h1{
  margin-top: 50px !important;
}

.foto{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.staff{
  width: 280px;
  position: relative;
  margin: 2%;
}
.staff img{
  width: 100%;
}

.staff h3{
  background: rgba(53, 215, 131, 0.57);
  color: #fff;
  width: auto;
  line-height: 30px;
  padding: 5px 20px;
  text-align: center;
  position: absolute;
  top: 5px;
  left: -30px;
}

.staff_info{
  position: absolute;
  width: 100%;
  padding: 6px;
  left: 0;
  bottom: 0px;
  background-color: rgba(223, 223, 223, 0.6);
  opacity: 0;
  transition: 0.6s;
}
.staff:hover .staff_info{
  bottom: 30px;
  opacity: 1;
}
.reviews{
  margin-top: 370px;
  /* height: 30vh; */
    background-color: rgba(53, 215, 131, 0.57);
}

.container-box{
  display: flex;
  justify-content:space-around;
  flex-wrap: wrap;

}
.container-box .box{
  width: 300px;
  position: relative;
  padding: 10px;
  margin: 10px ;
  background-color: #fff;
}
.container-box .box img{
  width: 20%;
  border-radius: 50%;
}
.container-box .box span{
  font-weight: bold;
  font-size: 1.5em;
  position: absolute;
  top: 5px;
  right: 20px;


}
