.box {
    display: grid;
}


.grid1 {
    display: grid;
    column-gap: 10px;
    grid-template-columns : repeat(3, 1fr);
    grid-template-areas:
    "A B C";
}

.box-1 {
    grid-area: A;
    align-self: center;
    place-items: center;
}

.box-2 {
    grid-area: B;
    align-self: center;
    place-items: center;
}

.box-3 {
    grid-area: C;
    align-self: center;
    place-items: center;
}

.img-1 {
    width: 20vw;
}

.img-1-a {
    width: 20vw;
}

.img-2 {
    width:  15vw;
}