:root {
    --color-background: white;
    --color-foreground: black;
    --color-link: black;
    --color-link-active: #0e5ba5;
    --color-heading: #0e5ba5;
    --color-highlight: #0e5ba5;
}


html, body {
    height: 100%;
    margin: 0; padding: 0;
}

body {
    color: var(--color-foreground);
    background-color: var(--color-background);
    font-family: sans-serif;
    font-size: 16px; line-height: 1.3;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
}

a:link, a:visited {
    color: var(--color-link);
    text-decoration: none;
}

a:hover, a:active {
    color: var(--color-link-active);
}

.wrapper {
    display: flex;
    width: 100%; height: 100%;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

.logo img {
    display: block;
    width: 50vw; max-width: 500px; height: auto;
    margin: 0 auto 2rem auto;
}

h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

p {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
}

p span {
    color: var(--color-highlight);
}


.brands-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none outside;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0; padding: 0;
}

.brands-list li {
    flex: 20% 1 1;
    margin: 0; padding: 0;
}

.brands-list img {
    display: inline-block;
    max-width: 200px; height: auto;
}

@media only screen and (max-width: 979px)  /*  767  */ {
    .wrapper {
        height: auto;
        padding-top: 40px;
    }

    .logo img {
        width: 90%;
    }

    h2, p {
        font-size: 1.1rem;
    }

    .brands-list {
        gap: 0;
    }

    .brands-list li {
        flex: 50% 1 1;
    }

    .brands-list img {
        max-width: 25vw;
    }
}
