.wrapper{
    display: grid;
    justify-content: center;
    grid-template-columns: 8% 17% 50%;
    grid-column-gap: 1em;
    font-size: 24px;
    line-height: 140%;
}
.box1{
    background-color: rgb(238, 195, 139);
    height: 3em;
}

.wrapper2{
    display: grid;
    justify-content: start;
    grid-template-columns: 48px 1fr 48px 1fr;
    grid-column-gap: 1em;
    font-size: 16px;
    line-height: 22px;
    width: 50%;
    margin: 1em 0 0 0;
}
.box2{
    background-color: rgb(132, 194, 248);
    height: 3em;
}

.wrapper3{
    display: grid;
    justify-content: end;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1em;
    font-size: 14px;
    line-height: 14px;
    width: 33%;
    margin: 1em 0 0 auto; 
}
.box3{
    background-color: rgb(60, 221, 146);
    height: 3em;
}

.wrapper4{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows:repeat(2, 1fr);
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    font-size: 24px;
    line-height: 140%;
    width: 80%;
    margin: 1em auto auto auto;
}
.box4{
    background-color: rgb(206, 229, 92);
    height: 3em;
}

.wrapper5{
    display: grid;
    justify-content: start;
    grid-template-columns: 96px 1fr;
    grid-column-gap: 1em;
    font-size: 48px;
    line-height: 48px;
    width: 60%;
    margin: 1em 144px ;
    
}
.box5{
    background-color: rgb(219, 85, 112);
    height: 3em;
}

.wrapper6{
    display: grid;
    justify-content: center;
    grid-template-columns: 60px 60px 1fr 1fr 2fr;
    grid-template-rows:repeat(4, auto) ;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    font-size: 24px;
    line-height: 140%;
    margin: 1em auto auto auto;
}
.box6{
    background-color: rgb(28, 241, 206);
    height: 3em;
}

.wrapper7{
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 10% 100px 20vw 2fr;
    grid-column-gap: 1em;
    font-size: 32px;
    line-height: 25px;
    margin: 1em auto auto auto;
}
.box7{
    background-color: rgb(177, 64, 36);
    height: 3em;
}