.container {
    min-width: 550;
    max-width: 900px;
    background-color: rgb(238, 231, 231);
    box-shadow: 10px 15px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
}

img {
    width: 130px;
    border-radius: 50%;
}

button {
    background: rgb(128, 223, 140);
    border: 0;
    font-size: 1rem;
    color: white;
    padding: 8px;
    width: 80%;
}

.box1 {
    text-align: center;
    background-color: white;
    grid-column-start:1 ;
    grid-column-end:2;
    grid-row-start: 1;
    grid-row-end: 5;
}

.box2 {
    text-align: center;
    background-color: white;
    grid-row-start: 1;
    grid-row-end:3;
}

.box3 {
    background-color: white;
    grid-row-start: 1;
    grid-row-end: 3;
}

.box4 {
    background-color: white;
    grid-row-start: 1;
    grid-row-end:3;
}
.box5 {
    text-align:justify;
    background-color: white;
    grid-column-start: 2;
    grid-column-end:5 ;
    grid-row-start: 3;
    grid-row-end: 5;
}

.box4>h5 {
    color:rgb(128, 223, 140);
}

.box3>h5 {
    color:rgb(128, 223, 140);
}

.box2>h5 {
    color:rgb(128, 223, 140);
}
.box4>p {
    color:rgb(193, 201, 194);
}

.box3>p {
    color:rgb(193, 201, 194);
}
.box2>p {
    color:rgb(193, 201, 194);
}