@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
@keyframes powerOn {
    0% { opacity: 0; filter: brightness(0); }
    50% { opacity: 1; filter: brightness(2); }
    100% { opacity: 1; filter: brightness(1); }
}

@keyframes clignotement {
    0% { background-color: #9bbc0f; color: #0f380f; }
    50% { background-color: #0f380f; color: #9bbc0f; }
    100% { background-color: #9bbc0f; color: #0f380f; }
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(0% 0 80% 0); }
}

@keyframes glissementHaut {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shutterDown {
    0% { height: 0; }
    100% { height: 100%; }
}

@keyframes shutterUp {
    0% { height: 100%; }
    100% { height: 0; }
}

html {
    scroll-snap-type: y proximity;
    scroll-behavior: inherit;
    scroll-padding-top: 100px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #0f380f;
}

::-webkit-scrollbar {
    display: none;
}

header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-between; 
    align-items: center;
    padding: 0 40px;
    background-color: #2b2b2b;
    height: 100px;
    border-bottom: 6px solid #306230;
    width: 100%;
    box-sizing: border-box;
    z-index: 2000;
}

header nav ul {
    position: absolute;
    top: 35px;         
    right: 30px;       
    margin: 0;    
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
}

header nav ul li a {
    font-size: 20px;
    font-family: 'Pixelify Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    text-decoration: none;
    color: #9bbc0f;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffffff;
}

h1 {
    font-family: 'Pixelify Sans', sans-serif;
    position: fixed;
    top: 10px; 
    left: 40px;
    z-index: 3000;
    color: #9bbc0f;   
    text-shadow: 2px 2px 0px #000000;
    margin: 0;
    padding: 0;
    font-size: 60px;
    animation: powerOn 2s ease-in-out;
}

h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b2b2b;
    opacity: 0;
}

h1:hover::before,
h1:hover::after {
    opacity: 1; 
    background: transparent;
}

h1:hover::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip-path: inset(0 0 0 0);
    animation: glitch-anim-1 1s infinite linear alternate-reverse;
}

h1:hover::after {
    left: -2px;
    text-shadow: 2px 0 #00fff9;
    clip-path: inset(0 0 0 0);
    animation: glitch-anim-2 1.5s infinite linear alternate-reverse;
}


#phrase-de-nav {
    font-family: 'Pixelify Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    position: fixed;
    top: 40px;
    left: 30px;
    margin: 0;
    padding: 0;
}

body {
    background-color: #9bbc0f;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#pikachu img{
    mix-blend-mode: multiply;
    display: block;
    position: absolute;
    width: 600px;
    height: auto;
    filter: grayscale(100%) contrast(150%);
    transform: scaleX(-1) translateY(-50%);
    left: 0px;
    top: 50%;
    z-index: 1000;
}

#menu {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.btn-retro {
    display: inline-block;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 24px;
    text-decoration: none;
    color: #0f380f;
    border: 4px solid #0f380f;
    padding: 15px 30px;
    background-color: transparent;
    text-transform: uppercase;
    transition: all 0.1s ease-in-out;
    text-align: center;
    box-shadow: 6px 6px 0px rgba(15, 56, 15, 0.4);
}

.btn-retro#clignote {
    animation: clignotement 1.5s infinite;
    transition: box-shadow 0.1s;
}

.btn-retro:hover {
    background-color: #0f380f;
    color: #9bbc0f;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    box-shadow: 2px 2px 0px rgba(15, 56, 15, 0.4);
    transform: translate(4px, 4px);
}

.btn-retro#clignote:hover {
    transition: all 0.04s ease-in-out;
    box-shadow: 2px 2px 0px rgba(15, 56, 15, 0.4);
    transform: translate(4px, 4px);
}

/* Overlay de transition Game Boy */
.gameboy-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    opacity: 1;
}

.gameboy-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Volets qui descendent */
.gameboy-transition .shutter {
    flex: 1;
    height: 0;
    background-color: #0f380f;
}

.gameboy-transition.active .shutter {
    animation: shutterDown 0.4s ease-out forwards;
}

.gameboy-transition.active .shutter:nth-child(1) { 
    animation-delay: 0s; 
}

.gameboy-transition.active .shutter:nth-child(2) { 
    animation-delay: 0.05s; 
}

.gameboy-transition.active .shutter:nth-child(3) { 
    animation-delay: 0.1s; 
}

.gameboy-transition.active .shutter:nth-child(4) { 
    animation-delay: 0.15s; 
}

/* Animation d'ouverture au chargement de la page */
.gameboy-transition.opening {
    opacity: 1 !important;
}

.gameboy-transition.opening .shutter {
    height: 100%;
    animation: shutterUp 0.4s ease-out forwards;
}

.gameboy-transition.opening .shutter:nth-child(1) { 
    animation-delay: 0.15s; 
}

.gameboy-transition.opening .shutter:nth-child(2) { 
    animation-delay: 0.1s; 
}

.gameboy-transition.opening .shutter:nth-child(3) { 
    animation-delay: 0.05s; 
}

.gameboy-transition.opening .shutter:nth-child(4) { 
    animation-delay: 0s; 
}

.dataTables_wrapper {
    width: 90%;
    margin: 20px auto;
    font-family: 'Pixelify Sans', sans-serif;
    color: #0f380f;
}

#tableau-pokemons {
    border: 4px solid #0f380f;
    background-color: transparent;
    border-collapse: collapse;
}

#tableau-pokemons thead th {
    background-color: #0f380f;    
    color: #9bbc0f;
    text-transform: uppercase;     
    border-bottom: 4px solid #0f380f;
    padding: 15px;
    font-size: 18px;
}

#tableau-pokemons tbody td {
    background-color: transparent;
    border-bottom: 2px solid #0f380f;
    padding: 10px;
    font-size: 16px;
    color: #0f380f;
}

#tableau-pokemons tbody tr:hover td {
    background-color: #0f380f; 
    color: #9bbc0f;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_filter, 
.dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_paginate {
    color: #0f380f !important;
    font-family: 'Pixelify Sans', sans-serif !important;
    margin-bottom: 10px !important;
}

.dataTables_wrapper input, .dataTables_wrapper select {
    background-color: #9bbc0f !important;
    border: 2px solid #0f380f !important;
    color: #0f380f !important;
    font-family: 'Pixelify Sans', sans-serif !important;
    padding: 5px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 2px solid #0f380f !important;
    background: transparent !important;
    color: #0f380f !important;
    border-radius: 0;
    margin-left: 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #0f380f !important;
    color: #9bbc0f !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0f380f !important;
    color: #9bbc0f !important;
}

.panel-1 {
    position: relative;
    min-height: calc(100vh - 100px);
    width: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    background-color: #9bbc0f;
}

.pageacceuil {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#formulaire {
    background-color: #8bac0f;
    border: 6px solid #0f380f;
    box-shadow: 
        inset 4px 4px 0px rgba(15, 56, 15, 0.3),
        8px 8px 0px rgba(15, 56, 15, 0.4);
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 45px;
    margin-bottom:40px;
    width: 600px;
    font-family: 'Pixelify Sans', sans-serif;
    position: relative;
}

#formulaire::before {
    content: "● CONTACT FORM";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: #0f380f;
    font-weight: bold;
    letter-spacing: 2px;
}

#formulaire::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #0f380f 0px,
        #0f380f 8px,
        transparent 8px,
        transparent 12px
    );
}

#formulaire label {
    display: block;
    margin-bottom: 8px;
    margin-top: 20px;
    font-weight: bold;
    color: #0f380f;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#formulaire label span {
    color: #306230;
}

#entete {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

#entete div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#radio {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(48, 98, 48, 0.1);
    border: 2px dashed #0f380f;
}

#radio input[type="radio"] {
    display: none;
}

#radio label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Pixelify Sans', sans-serif;
    color: #0f380f;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 !important;
    transition: all 0.1s;
}

#radio label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background-color: #9bbc0f;
    border: 4px solid #0f380f;
    box-shadow: 2px 2px 0px rgba(15, 56, 15, 0.3);
    flex-shrink: 0;
}

#radio label:hover {
    color: #306230;
    transform: translateX(5px);
}

#radio input[type="radio"]:checked + label {
    color: #0f380f;
    font-weight: bold;
}

#radio input[type="radio"]:checked + label::before {
    background-color: #0f380f;
    box-shadow: inset 0 0 0 4px #9bbc0f; 
}

#formulaire input[type="text"],
#formulaire input[type="email"] {
    height: 45px;
    width: 100%;
    border: 4px solid #0f380f;
    background-color: #9bbc0f;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    color: #0f380f;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: inset 3px 3px 0px rgba(15, 56, 15, 0.3);
    transition: all 0.1s;
}

#formulaire input[type="text"]:focus,
#formulaire input[type="email"]:focus,
#formulaire textarea:focus {
    outline: none;
    background-color: #306230;
    color: #9bbc0f;
    box-shadow: 
        inset 3px 3px 0px rgba(15, 56, 15, 0.5),
        0 0 0 2px #9bbc0f;
}

#formulaire input::placeholder,
#formulaire textarea::placeholder {
    color: #306230;
    opacity: 0.7;
}

#message {
    height: 150px;
    width: 100%;
    resize: vertical;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    border: 4px solid #0f380f;
    background-color: #9bbc0f;
    color: #0f380f;
    box-shadow: inset 3px 3px 0px rgba(15, 56, 15, 0.3);
    transition: all 0.1s;
}

#formulaire input[type="submit"] {
    margin-top: 30px;
    padding: 15px 40px;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #0f380f;
    background-color: #9bbc0f;
    border: 4px solid #0f380f;
    cursor: pointer;
    box-shadow: 6px 6px 0px rgba(15, 56, 15, 0.4);
    transition: all 0.1s;
    letter-spacing: 2px;
}

#formulaire input[type="submit"]:hover {
    background-color: #0f380f;
    color: #9bbc0f;
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px rgba(15, 56, 15, 0.4);
}

#formulaire input[type="submit"]:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px rgba(15, 56, 15, 0.4);
}

.main-footer {
    background-color: #8bac0f;
    border-top: 6px solid #0f380f;
    padding: 40px 20px 20px;
    margin-top: auto;
    font-family: 'Pixelify Sans', sans-serif;
    box-shadow: inset 0 4px 0px rgba(15, 56, 15, 0.3);
}

#msgretour {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(48, 98, 48, 0.1);
    border: 2px dashed #0f380f;
    border-radius: 5px;
}

.statut-formulaire {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    color: #0f380f;
    padding: 10px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 4px dashed #0f380f;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Pixelify Sans', sans-serif;
    color: #0f380f;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0f380f;
}

.footer-section p {
    font-family: 'Pixelify Sans', sans-serif;
    color: #306230;
    font-size: 14px;
    line-height: 1.8;
    margin: 8px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-family: 'Pixelify Sans', sans-serif;
    color: #0f380f;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    display: inline-block;
    position: relative;
    transition: all 0.1s;
}

.footer-links li a::before {
    content: "▶ ";
    opacity: 0;
    margin-right: 5px;
    transition: opacity 0.1s;
}

.footer-links li a:hover {
    color: #306230;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Pixelify Sans', sans-serif;
    color: #0f380f;
    font-size: 12px;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

main {
    padding-top: 100px;
    width:  1080px;
    margin: 0 auto;
    padding-bottom: 0px ;
}

.pokedex-grille {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 120px 40px 40px 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.pokedex-carte {
    border: 4px solid #0f380f;

    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 4px 4px 0px rgba(15, 56, 15, 0.4);
    transition: transform 0.1s, background-color 0.1s;
}

.pokedex-carte:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(15, 56, 15, 0.6);
    background-color: #9bbc0f;
    cursor: pointer;
}

.pokedex-id {
    font-family: 'Pixelify Sans', sans-serif;
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 14px;
    color: #0f380f;
    font-weight: bold;
}

.img-container {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9bbc0f;
    border: 2px inset #0f380f;
    margin-top: 20px;
    border-radius: 4px;
}

.pokedex-carte img {
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    filter: grayscale(100%) brightness(0.9) sepia(100%) hue-rotate(50deg) saturate(3);
    opacity: 0.9;
    mix-blend-mode: hard-light;
    transition: all 0.2s;
}

.pokedex-carte img:hover {
    filter: normal;
    opacity: 1;
    mix-blend-mode: normal;
    cursor: pointer;
}

.pokedex-info {
    text-align: center;
    margin-top: 10px;
    width: 100%;
    border-top: 2px dashed #0f380f;
    padding-top: 5px;
}

.pokedex-info h2 {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 20px;
    margin: 5px 0;
    color: #0f380f;
    text-transform: uppercase;
}

.pokedex-info .type {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 14px;
    color: #306230;
    margin: 0;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}

.modal-galerie {
    margin: auto;
    display: block;
    width: 400px;
    margin-top: 200px;
    height: auto;
    border: 5px solid #9bbc0f;
    border-radius: 15px;
}


#caption {
    text-align: center;
    color: white;
    font-family: 'Arial Black', sans-serif;
    font-size: 2rem;
    margin-top: 20px;
    text-transform: uppercase;
}

.fermeturemodal {
    position: absolute;
    top: 115px; right: 35px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* Stylisation du titre Artwork pour correspondre au H1 glitchy */
#sous-titre.entete-credits h2 {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 32px;
    color: #0f380f;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 40px 0;
    position: relative;
}

.conteneur-credits {
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 40px 40px;
}

.section-credits {
    background-color: #8bac0f;
    border: 6px solid #0f380f;
    box-shadow: 
        inset 4px 4px 0px rgba(15, 56, 15, 0.3),
        8px 8px 0px rgba(15, 56, 15, 0.4);
    margin-bottom: 40px;
    padding: 30px;
    position: relative;
}

.section-credits::before {
    content: "● RESSOURCES";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: #0f380f;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Pixelify Sans', sans-serif;
}

.section-credits::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #0f380f 0px,
        #0f380f 8px,
        transparent 8px,
        transparent 12px
    );
}

.entete-credits {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 4px dashed #0f380f;
    margin-top: 20px;
}

.entete-credits h2 {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 24px;
    color: #0f380f;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.liste-credits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.liste-credits li {
    background-color: #9bbc0f;
    border: 4px solid #0f380f;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 4px 4px 0px rgba(15, 56, 15, 0.4);
    transition: all 0.1s;
    position: relative;
}

.liste-credits li::before {
    content: "■ ";
    position: absolute;
    left: -2px;
    top: -2px;
    font-size: 12px;
    color: #0f380f;
    font-weight: bold;
}

.liste-credits li:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(15, 56, 15, 0.6);
    background-color: #306230;
}

.liste-credits li:hover .description-credits {
    color: #9bbc0f;
}

.liste-credits li:hover .lien-credits {
    color: #9bbc0f;
    border-color: #9bbc0f;
}

.description-credits {
    display: block;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 16px;
    color: #0f380f;
    line-height: 1.6;
    margin-bottom: 12px;
    transition: color 0.1s;
}

.lien-credits {
    display: inline-block;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 18px;
    color: #0f380f;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0f380f;
    padding: 8px 15px;
    background-color: transparent;
    transition: all 0.1s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lien-credits:hover {
    background-color: #0f380f;
    color: #9bbc0f;
    transform: translateX(3px);
}

.remerciements-credits {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    border: 6px double #0f380f;
    background-color: #8bac0f;
    box-shadow: 8px 8px 0px rgba(15, 56, 15, 0.4);
}

.remerciements-credits p {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 22px;
    color: #0f380f;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

.section-credits {
    animation: glissementHaut 0.5s ease-out;
}

.section-credits:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.remerciements-credits {
    animation: glissementHaut 0.5s ease-out 0.4s;
    opacity: 0;
}

.partenaires-section {
    position: relative;
    max-width: 1080px;
    margin: 40px auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#alexis {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    max-width: 450px;
    width: 100%;
    margin-bottom: 50px;
}
.partenaire {
    background-color: #8bac0f;
    border: 4px solid #0f380f;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 6px 6px 0px rgba(15, 56, 15, 0.4);
    font-family: 'Pixelify Sans', sans-serif;
}

.partenaire h2 {
    font-size: 22px;
    color: #0f380f;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.partenaire img {
    width: 350px;
    height: 300px;
    object-fit: cover;
    border: 4px solid #0f380f;
    margin-bottom: 15px;
    image-rendering: pixelated;
}

.partenaire p {
    color: #0f380f;
    font-size: 16px;
    line-height: 1.4;
}