:root {
    --white: #fff;
    --primary: #5D2985;
    --gold: #AD8F3D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
img {
    max-width: 100%;
}
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}
.logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: 2rem auto;
}
.logos div {
    margin-bottom: 2rem;
}

.head {
    color: #000;
    font-weight: bold;
    font-size: clamp(1.875rem, 0.536rem + 4.286vw, 3.75rem);
    text-align: center;
    line-height: 1.2;
    padding: 0 2rem;
    margin: clamp(1.875rem, 0.536rem + 4.286vw, 3.75rem) 0;
}
.contact {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    font-size: clamp(1.125rem, 0.768rem + 1.143vw, 1.625rem);
}

.contact a {
    color: #fff;
    text-decoration: none;
    transition: .2s;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 1.25rem;
}

.contact a:hover,
.contact a:focus-visible {
    opacity: .75;
}

@media screen and (min-width: 900px) {
    .logos div {
        width: 40%;
        margin-bottom: 0;
    }

    .contact a {
        margin-bottom: 0;
        width: 50%;
    }
}