/* FOR ABOUTUS.HTML */

.font {
  font-size: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.box {
  width: 250px;
  height: auto;
  background-color: #b28dff;
  text-align: center;
  box-shadow: 10px 10px 10px;
}

img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 20px;
}

.description {
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 1050px) {
  .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}