footer {
    height: 40px;
    padding : 10px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

footer p {
    font-size: 0.8rem;
    margin: 0;
}

@media all and (max-width: 360px) {
    footer {
        display: flex;
        flex-direction: column;
        height: 60px;
    }
}