.box-container {
  display: flex;
  flex-wrap: wrap;
}

.box{
    display: flex;
    flex-wrap: wrap;
    color: white;
    border: 1px solid rgb(255, 255, 255);
    width: 95%;
    height: 300px;
    margin: 10px;
    text-decoration: none;
}

.box img
{
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.box h3
{
  text-align: center;
  width: 100%;
  padding: 10px;
}

.box p
{
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: 12px;
}