body {
    color: plum;
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
}


.wrapper {
width: min(1100px, 92%);
margin: 0 auto;
}

.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: px;
align-items: stretch;
}

.box {
border: 1px solid #bbb;
padding: 15px;
background: white;
text-align: center;
width: 100%;
box-sizing: border-box;
}

.box img {
width: 100%;
height: 150px;
object-fit: cover;
display: block;
}

h1 {
color: plum;
}

p {
font-size: 20px;
}
 