body{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 24px;
    border:  red;
    height:100vh;
}
.list{
   /* border: solid blue;
    */list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 5px;
    width: 120px;
}
.icon_img{
    height: 24px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.section1{
    /*border: solid green;
    */display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.section2{
    /*border: solid yellow;
    */display: flex;
    flex-direction: row;
    justify-items: space-evenly;
    padding: 32px;
}
*{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.icon_img:hover{
border: 1px solid black;
}
