html,
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    scroll-behavior: smooth;
}

header {
    display: block;
    z-index: 9;
    padding: 2rem;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

header div {
    z-index: 10;
}

header a {
    font-size: 19px;
    transition-duration: 0.25s;
}

header a.active {
    color: #088aff;
}

.drawer {
    z-index: 1;
    position: absolute;
    top: -10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition-duration: 0.5s;
    background: white;
    width: 100%;
}

.drawer a {
    opacity: 0;
    margin: 1rem 0;
}

header .menu {
    cursor: pointer;
    display: none;
}

main {
    margin: 1rem 3rem;
}

.wrapper section {
    display: none;
}

.wrapper>div {
    display: flex;
    font-size: 18px;
    border-bottom: solid 1px lightgray;
    padding: 1rem;
    transition-duration: 0.25s;
    cursor: pointer;
}

.wrapper>div:hover {
    transform: translateY(-0.3rem);
}

.wrapper section.show {
    display: block;
}

label {
    font-weight: bold;
}

input,
textarea,
select {
    background: rgb(245, 245, 245) !important;
    border: solid 1px rgb(229, 229, 229);
    border-radius: 5px;
    padding: 1rem !important;
}

footer {
    background-color: #088aff;
    padding: 2rem;
    color: white;
}

footer .rubrique-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
}

footer .rubrique {
    display: flex;
    flex-direction: column;
}

footer .rubrique .title {
    font-weight: bold;
    font-size: 20px;
}

footer .rubrique .item {
    padding-left: 1rem;
    transition-duration: 0.25s;
    color: white;
}

footer .rubrique .item:hover {
    opacity: 0.75;
    transform: scaleX(1.025);
}

footer .infos {
    font-size: 11px;
}

.ico {
    filter: invert(45%) sepia(75%) saturate(6373%) hue-rotate(195deg) brightness(92%) contrast(110%);
}

@media screen and (max-width: 1050px) {
    header .link a {
        font-size: 16px;
    }
}

@media screen and (max-width: 550px) {
    header .link {
        display: none;
    }
    header .menu {
        display: block;
    }
    .drawer.active {
        z-index: 7;
        top: 5rem;
        box-shadow: 0 20px 15px rgba(0, 0, 0, 0.1);
    }
    .drawer.active>a {
        transition-duration: 0.5s;
        opacity: 1;
    }
    footer .rubrique-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .rubrique {
        margin: 1rem 0;
    }
}