/* footer.css */
.footer{
    width: 99vw;
    height: auto;
    background-color: #fff;
    z-index: 10;
    position: relative;
}
.footer a{
    width: 15.2vw;
    margin: 0 2vw 15px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: black;
}
.footer a:hover{
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}
.footer p {
    text-align: center;
}

@media (max-width: 768px) {
    .footer a {
        width: 40%;
        margin: 0 5% 10px;
    }

    .footer .links {
        text-align: center;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .footer a {
        width: 90%;
        display: block;
        margin: 10px auto;
    }
}

@media (max-width: 1200px) and (orientation: landscape) {
    .footer a {
        margin: 0 auto 3px;
        float: left;
    }
    .links{
        width: 100vw;
        min-height: 23px;
        justify-content: space-between;
        display: flex;
    }
    .sortItems{
        padding: 0 40px 0 0;
    }
}