@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

:root {
    --footer-bg-color: #191919;
    --text-color: black;
    --link-color: cornflowerblue;
    --footer-text-color: aliceblue;
}

.footer {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    height: 80px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-top: auto;
    width: 100%;
}

.footer-left {
    flex: 1;
    text-align: left;
    margin-left: 50px;
    list-style: none;
    padding: 0;
}

.footer-left li {
    margin-bottom: 10px;
    display: inline;
    margin-right: 10px;
    font-size: 30px;
    vertical-align: middle;
}

.footer-right {
    flex: 1;
    text-align: right;
    margin-right: 50px;
    list-style: none;
    padding: 0;
}


.footer-right ion-icon {
    transition: 0.5s;
}

.footer-right ion-icon:hover {
    color: var(--clr);
    transform: translateY(-4px);
    transition: 0.5s;
}

.footer-right li {
    margin-bottom: 10px;
    display: inline;
    margin-right: 10px;
    font-size: 25px;
    vertical-align: middle;
}

.footer a {
    text-decoration: none;
    color: var(--footer-text-color);
}

.footer-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-center p {
    font-size: 10px;
}

.footer-center img {
    width: 50px;
}

.footer-right .icon {
    color: var(--footer-text-color);
    transition: all 0.7s;
    font-size: 30px;
    transform: translateY(3px);
}

.footer-right .icon:hover {
    transform: translateY(7px);
    color: var(--clr);
    transition: all 0.7s;
}