footer {
    color: rgb(200, 200, 200);
    background: rgb(40, 40, 40);
    font-weight: 300;
    font-size: .9rem;
}
footer h4 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1rem;
}
footer a {
    color: #fa0e9f;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 5rem;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-content > img {
    height: 10rem;
}
.footer-line {
    display: block;
    width: 100%;
    height: 1px;
    background: rgb(80, 80, 80);
}
.disclaimer {
    text-align: center;
    padding: .5rem 1rem;
    font-size: .8rem;
    color: grey;
}

@media screen and (max-width: 768px) {
    footer {
        text-align: center;
    }
    .footer-content {
        padding: 3rem 2rem;
        flex-direction: column;
        align-items: center;
    }
    .footer-content > img {
        margin-top: 2rem;
    }
    .terms {
        margin-top: 2rem;
    }
}