::selection {
    color: var(--light);
    background-color: var(--accent);
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-size: 18px;
    font-family: 'RobotoFlex', sans-serif;
    line-height: 1.5em;
    position: relative;
    padding-bottom: 150px;
    min-height: calc(100vh - 150px);
    font-stretch: 100%;
}

.title, h1, h2 {
    font-weight: 800;
    line-height: 1.2em;
    margin-top: 0.2em;
}

a {
    color: var(--dark);
    font-weight: 600;
    white-space: nowrap;
}
a:hover, a:focus {
    text-decoration: none;
    color: var(--accent);
    border-color: var(--accent);
}

.feather {
    stroke: var(--accent);
}

.feather-external-link {
    width: 1em !important;
    height: 1em !important;
    margin-right: 0px !important;
}

nav {
    position: absolute;
    top:1.5em;
    right: 1.5em;
    padding:.5em;
    font-size: .8em;
}

nav .feather {
    width: 1.2em;
    height: 1.2em;
    stroke: var(--dark);
    margin-right: .5em;
    vertical-align: middle;
}

nav a:hover .feather {
    stroke: var(--accent);
}
.center {
    text-align: center;
}

.btn {
    border: 2px solid var(--dark);
    border-radius: 100px;
    padding : .5em .8em;
    text-decoration: none;
}
.btn:hover, .btn:focus {
    text-decoration: underline;
}

header, section, .footer-content {
    max-width: 1200px;
    margin: auto;
}

header, .footer-content {
    padding: 5em 5em 2em 5em;
    display: flex;
}

.hero {
    align-self: center;
}

.hero em {
    font-size: 1.6em;
    font-style: normal;
    text-decoration: underline 4px var(--dark);
}

.logo img {
    margin-right: 2em;
    height: 200px;
    width: 200px;
    object-fit: contain;
    filter: invert(15%);
}

section {
    display: flex;
    justify-content: space-between;
    padding: 1em 5em;
}

.fonctionnalites ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 1.5em;
    row-gap: 1.5em;
    padding-left: 0px;
}

.fonctionnalites ul li, .help ul li {
    list-style: none;
}

.fonctionnalites .feather {
    width: 1.5em;
    height: 1.5em;
    margin-right: 15px;
    vertical-align: text-bottom;
}

.blobs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 1.5em;
    row-gap: 1.5em;
}

.blobs div {
    padding: 0.5em 1.5em;
    border-radius: 40px;
    background-color: var(--lightgrey);
    font-weight: 500;
}

.help div {
    width: 100%;
}

.help ul {
    padding-left: 0px;
}

.help ul li {
    line-height: 2.5em;
}
.help .feather {
    vertical-align: text-bottom;
    margin-right: 1em;
}

footer {
    background-color: var(--lightgrey);
    font-size: .8em;
    bottom: 0px;
    position: absolute;
    right: 0px;
    left: 0px;
}

footer img {
    height: 2em;
    width: 2em;
    object-fit: contain;
    position: absolute;
    top: 3em;
    right: 1.5em;
    filter: invert(15%);
}

.footer-content {
    position: relative;
    padding-top: 3em;
    padding-bottom: 7em;
}
