main {
    font-family: "Courier New", sans-serif;
    margin-top: 20vh;
}

#pageTitle{
    display: grid;
    place-items: center;
    justify-items: center;
    margin-bottom: 7.5vh;
    h1{
        font-family: "American Typewriter";
        font-size: 4vw;
        font-weight: 600;
    }
}

.lang-active{
    opacity: 1 !important;
}
.lang-inactive{
    opacity: 0.5 !important;
}

#partenaires{
    display: grid;
    width: 80%;
    margin: 0 auto;
    grid-auto-rows: 30vh;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5vw;
    .partner{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 70% 30%;
        background-color: #f5f5f5;
        width: 100%;
        height: 100%;
        max-height: 30vh;
        max-width: 100%;
        padding: 2vw;
        border-radius: 1vw;
        justify-items: center;

        img {
            width: auto;
            height: auto;
            max-height: 15vh;
            border-radius: 1vw;
        }
        h1{
            text-transform: capitalize;
            font-size: 2.5vw;
            text-align: center;

        }
    }
}