.footer {
    background-color: rgb(141, 200, 218);
    color: #cbcbcb;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -4px;
}

.footer > .links-wrapper {
    margin-top: 20px;
    width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer > .social-media-icons-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    width: 300px;
    display: flex;
    justify-content: space-around;
}

.footer > .social-media-icons-wrapper a {
    color: white;
    transition: 0.5s;
}

.footer > .social-media-icons-wrapper a:hover {
    color: #1190CB;
}