.footer {
    display: flex;

    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    background-color: #05060D;
    font-family: 'Roboto', sans-serif;
    height: 40rem;
    padding: 3rem;
    margin-top: 8rem;
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .footer {
        display: flex;
    
        align-items: center;
        justify-content: space-around;
    
        background-color: #05060D;
        font-family: 'Roboto', sans-serif;
        height: 28rem;
        padding: 4rem;
        margin-top: 8rem;
        width: 100%;

        flex-direction: row;
    }
}