footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/Beach.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu-catering, .contact-gallery {
    display: flex;
    flex-direction: column;
}

.menu-catering > a, .contact-gallery > a {
    font-size: 35px;
    background-color: #EF9559;
    padding: 3px;
    border-radius: 4px;
    margin: 25px 10px;
    height: 47px;
    font-family: 'Oswald', sans-serif;
    width: 140px;
    text-align: center;
    text-decoration: none;
    color: black;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    transition: 0.5s;
}

.menu-catering > a:hover, .contact-gallery > a:hover {
    background-color: #ec8744;
    letter-spacing: 3px;
    box-shadow: none;
}

.socials > a > i {
    color:black;
    font-size: 30px;
    margin: 0px 10px;
    transition: 0.5s;
}

.socials > a > i:hover {
    color:#ec8744;
}

footer > p {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin: 2px;
}

@media screen and (max-width: 850px) {
    .footer-nav > img {
        width: 150px;
        height: 100%;
    }

    .menu-catering > a, .contact-gallery > a {
        width: 120px;
        font-size: 25px;
    }
}

@media screen and (max-width: 400px) {
    .footer-nav > img {
        width: 90px;
    }

    .menu-catering > a, .contact-gallery > a {
        width: 90px;
        height: 25px;
        font-size: 18px;
    }
}