/* ------- Footer styles ------- */

footer {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 1px solid grey;
    background-color:  #33383c;
}

.centerFooter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* H2 Style */
footer h2{
    color: white;
    padding-bottom: 5px;
}

/* Undeline of footer headings */
.borderFooterWidth{
    width: 100px;
    height: 1px;
    margin-top: 5px;
}

/* Remove the bullet points of the list */
footer li{
    list-style: none;
    padding: 10px 0px 0px 0px;
}

/* Style the linked text */
footer li a{
    color: #acacac;
    text-decoration: none;
    transition: margin 0.5s;
}

/* Text animation with the mouse */
footer li a:hover{
    color: #ebbfb2;
    margin: 0px 0px 0px 5px;
}

/* Distance from the linked text to the borders */
footer ul{
    margin-top: -14px;
    padding-bottom: 60px;
}

/* Parents container for flex the footer */
footer .parent {
    display: flex;
    justify-content: space-evenly;
}

/* Style text of copyright */
footer p {
    color: #acacac;
}

/* Style for the social icons */
.footer-social-icon {
    font-family: fontawesome;
    font-size: 20px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

/* Color for the icons */
.facebook {
    background-color: #4e71a8;
    color: #ffffff;
}

.instagram{
    background-color: #f86b00;
    color: #ffffff;
}

.twitter {
    background-color: #55acee;
    color: #ffffff;
}

.youtube {
    background-color: red;
    color: #ffffff;
}