html, body {
    padding: 0;
    margin: 0;
}

body {
    --red: #c91d24;
    --blue: #1e3949;
    --gray: #6b6b6b;
    --green: #80b099;
    --white: #f5f3f1;

    font-family: 'Source Sans 3', sans-serif;
    color: var(--gray);
    background-color: var(--white);
}

strong {
    color: var(--blue);
}

h3 {
    font-family: bebas-neue-pro-expanded, "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--blue);
    font-size: 1.6rem;

    text-decoration-line: underline;
    text-decoration-color: var(--green);
    text-decoration-thickness: 3px;
}

.content br {
    display: block;
    margin-bottom: 1rem;
}

header {
    background-color: var(--white);
    text-align: center;
    padding: 2rem;
}

header h1, header h4 {
    text-transform: uppercase;
    font-family: bebas-neue-pro-expanded, "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header h1 {
    color: var(--red);
    font-size: clamp(2rem, 8vw, 6rem);
    padding: 0;
    margin: 0;
}

header h4 {
    color: var(--blue);
    font-size: clamp(0.8rem, 3vw, 1rem);
}

header h2 {
    color: var(--blue);
    font-size: clamp(1.3rem, 4vw, 2.6rem);
    margin: 0;
}

header h2 .citoyen {
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
}

header h2 .citoyen::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    transform: rotate(-2deg);
    background-color: var(--blue);
}

.main-wrapper {
    padding-block: 1rem 4rem;
    padding-inline: 1rem;
    background-color: white;
}
.main-wrapper > * {
    max-width: 760px;
    margin-inline: auto;
}

.main-wrapper > * p, .main-wrapper > * ul {
    margin-left: 2rem;
}

.agenda-content {
    margin-bottom: 2rem;
}

.agenda p, .agenda h4 {
    margin-block: 0;
}

.agenda h4 {
    color: var(--blue);
    font-size: 1.2rem;
    font-family: bebas-neue-pro-expanded,'Source Sans 3' , sans-serif; */
    font-weight: 700;
    font-style: normal;
}

a, a:visited {
    color: var(--blue);
    text-decoration-thickness: 2px;
}

footer {
    text-align: center;
    padding-block: 2rem;
    font-weight: bolder;
    color: var(--blue);
}

.soutiens {
    max-width: 760px;
    padding-bottom: 3rem;
    margin: 0 auto 2rem auto;
    border-bottom: 1px solid var(--green);
}

.soutiens h5 {
    color: var(--green);
}

.soutiens-grid {
    width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 0 auto;
}

.soutien-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soutien-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.medias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
    margin-block: 4rem;
}

.media {
    display: grid;
    grid-template-rows: 1fr auto;
    text-align: center;
}

.media a {
    display: grid;
    place-items: center;
}

.media p {
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 0.4rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group label {
    display: inline;
    font-weight: normal;
}

button, .button {
    margin-block: 3rem;
    padding: 0.5rem 1rem;
    background-color: var(--blue);
    color: white;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration:none;
    display: block;
    text-align: center;
}

.button:visited {
    color: white;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--green);
    font-weight: bold;
}

.colistier {
    margin-bottom: 4rem;
}

.colistier-meta {
    display: flex;
}

.colistier-photo {
    --size: 150px;
    width: var(--size);
    height: var(--size);
    overflow: hidden;
}

.colistier-photo img {
    width: 100%;
    object-fit: cover;
}

.colistier-infos p {
    margin-block: 0;
}
