body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
    background-color: #e84e1b;
}

header {
    min-height: 75vh;
}

.h1 {
    text-align: center;
}

h2 {
    color: #fff;
    font-family: "DM Serif Text", serif;
    font-weight: 500;
    font-size: 40px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    color: #fff;
}

.footer-coordonnees {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

a {
    transition: 0.2s;
    color: #fff;
}

p {
    margin: 0;
}

a:hover {
    color: #671c0d;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media screen and (max-width: 1090px) {

    header {
        min-height: 60vh;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-coordonnees {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 550px) {

    .logo {
        width: 280px;
        height: auto;
    }

    header {
        min-height: 40vh;
    }

    h2 {
        font-size: 25px;
    }

}