/* this is a general code for the body of the footer for the menu site*/ 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* this is for the footer */

.footer {
    padding: 70px 0;
    background-color: black;
  
}
/* for the social medias*/
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: black 
}
/* social media icons*/ 
.footer .social a {
    font-size: 40px;
    color: inherit;
    color: white;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 30%;
    border-color: black;
    margin: 0 8px;
    opacity: 0.70;
}
/* to make the icons hover*/
.footer .social a:hover {
    opacity: 0.9;

}
/* this is the css for the list that sends you to other pages*/
.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: center;
    color: black

}

.footer ul li a{
    margin-top: 0%;
    color: white;
  
}

.footer ul li a:hover {

    opacity: 0.70;

}
/* for the copyright */
.footer .copyright {
    font-size: 18px;
}
/* for the map*/
.footer .map{
    text-align: center;
    
}

