:root {
    --blue-color: #343298;
    --grey-color: #f7f1e7;
    --cream-color: #FEF9F1;
    --border-color: #bababa;
    --text-grey-color: #7c7c7c;
}

body {
    background-color: var(--cream-color);
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-left: 7.5%;
    margin-right: 7.5%;
}

header, footer {
    display: flex;
    padding: 20px 0px;
    align-items: center;
    text-align: center;
}

header img, footer img {
    width: auto;
    height: 50px;
}

footer {
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-grey-color);
}

footer nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    min-width: 250px;
    justify-content: space-between;
    padding: 0;
}

nav ul li a {
    text-decoration: underline;
    color: var(--text-grey-color);
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
    footer nav {
        order: 1;
        margin-left: unset;
    }
    footer p {
        order: 2;
    }
}