@import url("https://fonts.googleapis.com/css2?family=Barlow");

body {
    margin: 0px;
    font-family: Barlow, roboto, sans-serif;
    font-style: normal;
    background-color: #ffffff;
}

a,
a:visited {
    text-decoration: none;
    color: #BC2049;
}

a:hover,
a:active {
    text-decoration: underline;
}

.main-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100vh;
}

.explanation {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #e3f2f4;
    color: #3d3d3d;
    font-size: 1.5em;
}

.explanation img {
    max-width: 30em;
    height: auto;
}

.logo-news {
    padding-top: 0.5em;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    grid-column-gap: 1em;
    grid-row-gap: 2em;
}

@media (min-width: 1000px) {
    .logo-news {
        padding-left: 10em;
        padding-right: 10em;
    }

    .explanation {
        padding: 2em 10em 2em 10em !important;
    }
}


@media (min-width: 531px) {
    .logo-news {
        grid-template-columns: repeat(2, 1fr);
    }

    .explanation {
        padding: 2em 5em 2em 5em;
    }
}

@media (max-width: 750px) {
    .explanation img {
        max-width: 20em;
    }
}

@media (max-width: 530px) {
    .logo-news {
        grid-template-columns: 1fr;
    }

    .logo-partners {
        flex-direction: column !important;
    }

    .explanation {
        padding: 2em;
    }
}

.logo-partners {
    color: #17778d;
    padding-top: 0.5em;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    bottom: 0px;
    position: relative;
}

.and {
    font-size: 1.5em;
    font-weight: lighter;
}

.logo-partners img {
    padding: 1em;
    width: 12em;
    height: auto;
}

.logo-news img {
    min-width: 5em;
    max-width: 15em;
    height: auto;
}