footer{
    display: flex;
    justify-content: center; 
    align-items: center;
    background-color: white;
   }

   
.footer{
    display: grid;
    grid-template-rows: auto; 
    grid-template-columns: 25% 25% 15% 35%;
    grid-template-areas:  "footer_1 footer_2 footer_img footer_3";
	grid-gap: 1px;
   
    }

.footer_1{
    grid-area: footer_1;
	justify-content: center;}

.footer_2{
    grid-area: footer_2;
    justify-content: center;}

.footer_3{
    grid-area: footer_3;
    justify-content: center;}

.footer_img{
	display: flex;
    grid-area: footer_img;
    justify-content: center;}