*
{
    font-family: Arial, Helvetica, sans-serif;
}
.footer
{
    display: grid;
    grid-template-columns: 100% ;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 50px;
}
.footer .menu a:hover
{
    background-color: #cef3ce;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.footer .menu i
{
    color: #aa2008;
}
.footer .menu a
{
    display: block;
    padding: 5px;
    border: 1.5px solid black;
    border-radius: 10px;
    background-color: #71f571;

}
.footer .menu
{
    display: grid;
    grid-template-columns: repeat(6, 2fr);
    grid-auto-rows: auto;    
    padding: 15px ;
    text-align: center;
    grid-column-gap: 2em;
    
}
.footer .contact
{
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-auto-rows: auto;
    padding-left: 30px;
    padding-top: 30px;
}
.footer .contact li
{
    list-style: decimal;
}
.footer .contact button
{
    padding: 13px;
    width: 30%;
    border-radius: 7px;
    border: 1px solid transparent;
    background-color: rgb(146, 246, 191);
}
.footer .flags
{
    text-align: center;
}
@media only screen and (max-width: 570px)
{
    .footer .menu
    {
    
        grid-template-columns: repeat(2, 2fr);
        grid-row-gap: 1em;
        
    }
}
@media only screen and (max-width: 900px) and (min-width: 600px)
{
    .footer .menu
    {
    
        grid-template-columns: repeat(3, 2fr);
        grid-row-gap: 1em;
        
    }
}