.content {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  justify-content: space-around;
}

.box {
  width: 275px;
  height: 275px;
  margin: 30px;

}
.box img {
  width: 275px;
  height: 275px;
  border: 1.5px solid white;
  margin-bottom: 10px;
}
.bigbox {
  width: 275px;
  height: 450px;
  margin-bottom: 10px;
}
.bigbox h2 {
  font-size: 1.33rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  margin: 15px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid lightgray;
}
.bigbox span {
  font-size: 1.6rem;
}
.bigbox p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  text-align: left;
  width: 270px;
  padding-left: 10px;
}

/* mobile phone - less than 590px */
@media only screen and (max-width: 590px) {
  .box {
    width: 150px;
    height: 150px;
    margin: 15px;
  }
  .box img {
    width: 150px;
    height: 150px;
  }
  .bigbox {
    width: 150px;
    height: 200px;
    margin-bottom: 5px;
  }
  .bigbox h2 {
    font-size: 1rem;
    border: none;
  }
  .bigbox span {
    font-size: 1.2rem;
  }
  .bigbox p {
    display: none;
  }
  footer {
    margin-top: 10px;
  }
}
