body {
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

ul {
    padding: 0;
}

* {
    font-family: 'Roboto', sans-serif;
}

p, h1, h2, dl, dd {
    margin: 0;
}

h1, h2 {
    font-weight: inherit;
}

a {
    text-decoration: none;
    color: unset;
}

a:hover {
    color: var(--couleur-thème);
}

button {
    border: none;
    padding: 0;

    cursor: pointer;

    background-color: transparent;
}

input, textarea {
    outline: none;
}

.super {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.super > * {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

header, form.recherche {
    z-index: 10;
}

main {
    z-index: 0;
}

main > .carte {
    z-index: 0;
}

main section {
    z-index: 10;

    pointer-events: none;
}

main {
    height: 100vh;
}

main > .carte {
    background-color: #E3E3E3;
}

button.petit {

    height: 2.125rem;
    width: 2.125rem;

    border-radius: 4px;

    flex-shrink: 0;
    flex-grow: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 3px 6px #00000029;

    background-color: white;
}

button.petit > span {
    display: none;
}


button.gros {
    padding: 0.5rem 1rem;

    background-color: var(--couleur-thème);
    border-radius: 4px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}


@media screen and (max-height: 48.128rem) {
    main {
        height: unset;
        min-height: 100vh;

        position: relative;
    }

    main > .carte {
        height: 100vh;
        width: 100vw;

        /*position: sticky;*/
        /*top: 0;*/
    }
}