footer {
    padding: 1em 2em;
}

footer p {
    font-size: 22px;
}

footer p, footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    margin: 0em;
}

footer a {
    color: black;
    text-decoration: none;
    transition: 300ms;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    border-color: black;
}

footer>h3 {
    text-align: center;
}

footer>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer>div>p {
    font-size: 1.2em; 
    margin-right: 0.6em;
}

footer>div>p:last-child {
    margin-right: 0em;
}

@media only screen and (max-width: 490px) {
    footer>h3 {
        font-size: 4.4vw; 
    }

    footer>div>p {
        font-size: 3.8vw; 
        margin-right: 2.3%;
    }
}