.shop_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: wrap;
  margin-bottom: 40px;
  background: white;
  border: black 1px solid;
  border-radius: 3px;
  box-shadow: 3px 3px lightgrey;
  width: 99%;
  padding: 20px;
}
.photo {
  height: 300px;
  width: 500px;
  box-shadow: 3px 3px lightgrey;
  border-radius: 3px;
}

.description p {
  font-size: 16px;
}

.description {
  font-family: "lato", sans-serif;
  font-size: 16px;
  color: black;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
}

.button {
  align-self: flex-end;
}

@media only screen and (max-width: 698px) {
  .photo {
    height: 200px;
    width: 300px;
  }
}
