body {
    background: #f5f5f5;
    color: #1c1c1c;
}
body, html {
    padding: 0;
    margin: 0;
}
body, input, textarea {
    font-family: 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.small-link {
    font-size: 0.7em;
    opacity: 0.5;
}

#header {
    background: black url('../assets/img/background.webp');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    padding: 30px;
    box-sizing: border-box;
    color: white;
}
#header img {
    max-width: 600px;
    width: 100%;
}
#header .links {
    display: flex;
    padding-top: 30px;
    gap: 20px;
}
@media only screen and (max-width: 360px) {
    #home .links {
        flex-direction: column;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    margin: 0;
}
h1, h2 {
    border-left: 5px solid #3C85C8;
    padding-left: 10px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 20px;
}


input[type=text] {
    padding: 0 25px;
    line-height: 48px;
    height: 48px;
    border: 1px solid #1c1c1c;
    font-size: 24px;
    border-radius: 48px;
}
input[type=checkbox] {
    height: initial;
}

label {
    display: block;
    width: 100%;
    position: relative;
}
label button {
    position: absolute;
    right: 14px;
    bottom: 10px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

#home #header {
    min-height: 100vh;
}

#home #footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: white;
    text-align: center;
}

#content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}


.button {
    border: 1px solid black;
    color: black;
    transition: all 200ms;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
}
.button:hover {
    background: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}
.button.inverted {
    background: rgba(255, 255, 255, 0.4);
    border: none;
}
.button.inverted.selected {
    background: rgba(255, 255, 255, 0.7);
}
.button:hover {
    background: rgba(255, 255, 255, 0.8);
}

cite {
    display: block;
    margin-top: 20px 0;
    padding: 0 15px;
    border-left: 5px solid #3C85C8;
}

.cadre {
    background: #F3F3F3;
    box-shadow: inset 3px 3px 9px rgba(0, 0, 0, 0.1);
    padding: 25px;
}
h2 + .cadre {
    margin-top: 10px;
}
.liste_images > a {
    display: inline-block;
}
