img{
    border-radius: 5px;
    width: 75px;
    margin: 12.5px
}
#you{
    grid-area: y;
}
#allen{
    grid-area: a;
}
#barry{
    grid-area: b;
}
#callie{
    grid-area: c;
}
#info{
    grid-area: i;
    display: flex;
    justify-content: space-around;
}
body{
    display: grid;
    grid-template-areas:
    'a b c'
    'i i i'
    'y y y';
    gap: 10px;
    padding: 10px;
    text-align: center;
}
#y{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
    background-color: grey;
    color: yellow;
}
#a{
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    background-color: grey;
    color: purple;
}
#b{
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    background-color: grey;
    color: purple;
}
#c{
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    background-color: grey;
    color: purple;
}
div{
    margin: 5px;
    background-color: lightgrey;
    border-radius: 10px;
}