@font-face {
    font-family: 'insolente';
    src: url(../typo/Insolente-Regular.woff2)  format("woff2");
}
body,
html{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', sans-serif;
    font-weight: 100;
}
.body-100 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
a {
    text-decoration: none;
}
header {
    width: 100%;
    background: #FF33CC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 10px 15%;
    font-size: 24px;
}
header a{
    color: black;
}
header nav {
    display: flex;
    gap: 40px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo a{
    font-size: 20px;
    cursor: pointer;
}
.logo img{
    height: 40px;
    aspect-ratio: 1/1;
}
main{
    width: 100%;
    box-sizing: border-box;
    padding: 0 15%;
}
.h1{
    font-family: insolente;
    text-align: center;
    font-size: 96px;
    margin-top: 256px;
}
.h2-info{
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}
.texte-info{
    font-size: 24px;
}
.grand-texte-info{
    font-family: insolente;
    font-size: 34px;
    margin-top: 70px;
    padding: 0px 20%;
    text-align: center;
    margin-bottom: 100px;
}
.texte-hero{
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}

.grille-posters,.grille-posters-p2{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.grille-posters{
    margin-top: 256px;
}
.grille-posters-p2{
    margin-top: 150px;
}
.fiche-poster {
    display: flex;
    flex-direction: column;
}

.Bouton-grille {
    margin-top: auto;
    padding: 7px 0px;
    background-color: #FF33CC;
    border-radius: 100px;
    color: white;
}
.titre-info-projet{
    font-size: 63px;
    font-weight: bold;
    letter-spacing: -2%;
}
.lien-image {
    display: block;
}
.texte-info-projet {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: flex-start;
    font-size: 24px;
}
.paragraphe-info-projet{
    margin: 20px 0px;
}
.bouton-info-projet {
    margin-top: 10px;
    display: inline-block;
    padding: 7px 20px;
    background-color: #FF33CC;
    border-radius: 100px;
    color: white;
}
.image-poster-grille {
    width: 100%;
    aspect-ratio: 1 / 1.414;
    background: #ccc; /* placeholder */
}
.image-poster-grille img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.titre-poster-grille{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
}
.changement-de-page{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    font-size: 24px;
}
.changement-de-page nav {
    display: flex;
    gap: 15px;
}
.numero-page{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 100px;
    border: solid 2px #FF33CC;
    color: #FF33CC;
}
.numero-page-active{
    background: #FF33CC;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 100px;
    border: solid 2px #FF33CC;
}
.main-info-projet{
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 5% 20%;
}
.image-info-projet {
    width: 33%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1.414;
}

.image-info-projet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.texte-info-projet {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
footer{
    text-align: center;
    width: 100%;
    margin-top: 50px;
    background: #FF33CC;
    box-sizing: border-box;
    padding: 10px 15%;
}
footer a{
    color: white;
}