body {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, 1fr); 
    padding: 25px;
    justify-items: center;
    align-items: center;
}
.item {
    text-align: center;
    max-width: 150px;
}
.item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}