
footer a{
    text-decoration: none;
    color: blanchedalmond;
}

footer {
    position: relative;
    bottom: -200px;
    background-color: #333;
    padding: 30px;
    font-size: 18px;
    height: 20vh;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(3,1fr);
}
.footer-nav {
    list-style: none;
    float: left;
}
.social-links {
    list-style: none;
    position: absolute;
    left: 50%;
    margin-left: -90px;
}


.copyright{
    color: #888;
    text-align: center;
    font-size: 90%;
    padding: 10px;
}
.icons i{
    cursor: pointer;
    width: 15%;
    color: #888;
}

#facebook:hover{
    color: #4267B2;
}
#instagram:hover{
    color: #e4405f;
}
#snap:hover{
   color: #FFFC00; 
}
#google:hover{
    color: #dd4b39;
}
#youtube:hover{
    color: #cd201f;
}

.call{
    color: #888;
}

#sms:hover{
    cursor: pointer;
    color: #09b83e;
}

@media (max-width: 450px){
    footer {
        height: 50vh;
        display: grid;
        grid-gap: 10px;
        grid-template-columns: repeat(1,1fr);
    }


}
