footer {
    padding: 30px;
    background-image: linear-gradient(90deg, #1C1C1A 1%, #232322 100%);
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #FFFFFF;
    font-family: "Lato", Sans-serif;
}

.footer-content .message {
    width: 40%;
}

.footer-content .links {
    width: 40%;
}

.links ul {
    padding: 0;
    list-style: none;
}

.links li {
    font-size: 12px;
  line-height: 32px;
}

.links a {
    font-size: 12px;
    line-height: 2em;
    transition: all 0.3s 0s ease;
    text-decoration: none;
    color: #FFFFFF;
}

.links a:hover {
    color: #EE8137;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    .footer-content .message {
        width: 100%;
    }

    .footer-content .links {
        width: 100%;
    }
}