.footer {
    background: url(/img/bg-footer.webp) no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer h3{
    color: #fff;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.footer-grid img{
    margin-left: auto;
    margin-right: auto;
}

.footer-grid p {
    text-align: center;
    margin-top: 10px;
}

.copy {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #000;
    display: grid;
    justify-items: center;
}
.copy > div {
    display: flex;
    gap: 5px 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.copy a {
    max-width: fit-content;
    min-width: fit-content;
    flex: 1;
    transition: .2s;
}
.copy a:hover {
    color: #0200F9;
}

@media only screen and (max-width: 475px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }
}