@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    color: white;
    height: 100vh;
    overflow-x: hidden;
    transition: background-position 0.05s ease;
    position: relative;
    z-index:0;
}

body.no-scroll {
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

footer {
    border-top: 1px solid #ccc;
    padding: 10px 0;
    text-align: center;
    color: #555;
    font-size: 14px;
    font-family: Arial, sans-serif;
    background: transparent;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-right: 20px;
}

.nav-links a {
    background: #2a2a2a;
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    transform: scale(1.3);
}


.cta {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
}

.intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 500;
    color:white;
}

.intro{
    position: relative;
    z-index: 1;
}

.spot-fixed {
    position: absolute;
    top: -95px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(255, 80, 0, 0.6),
    rgba(255, 0, 0, 0.3),
    rgba(0, 0, 0, 0.9) 80%,
    #000 100%);
    z-index: 1;
    pointer-events: none;
    filter: blur(14px);
    opacity: 0.75;
    animation: flicker 2.5s infinite ease-in-out;
}

@keyframes flicker {
    0%, 100% { opacity: 0.75; filter: blur(14px); }
    40% { opacity: 0.85; filter: blur(16px); }
    60% { opacity: 0.7; filter: blur(13px); }
    80% { opacity: 0.9; filter: blur(15px); }
}

.portrait .image-frame {
    width: 360px;
    height: 480px;
    background: #e10000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.ray {
    position: absolute;
    top: -150%;
    width: 2px;
    height: 400%;
    background: linear-gradient(
            to bottom,
            rgba(255, 80, 0, 0),
            rgba(255, 120, 0, 0.4),
            rgba(255, 0, 0, 0.7),
            rgba(255, 120, 0, 0.4),
            rgba(255, 80, 0, 0)
    );
    filter: blur(2px);
    animation: animateRay 8s linear infinite;
    transform: rotate(25deg);
}

.ray.delay1 { left: 10%; animation-delay: 0s; opacity: 0.4; }
.ray.delay2 { left: 25%; animation-delay: 1s; opacity: 0.5; }
.ray.delay3 { left: 40%; animation-delay: 2.5s; opacity: 0.6; }
.ray.delay4 { left: 55%; animation-delay: 3s; opacity: 0.5; }
.ray.delay5 { left: 70%; animation-delay: 4s; opacity: 0.4; }
.ray.delay6 { left: 85%; animation-delay: 5s; opacity: 0.6; }
.ray.delay7 { left: 95%; animation-delay: 6s; opacity: 0.3; }

@keyframes animateRay {
    0% {
        top: -150%;
    }
    100% {
        top: 100%;
    }
}

.projects {
    text-align: center;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.projects-title {
    font-family: 'Inter', sans-serif; /* ou EB Garamond si tu veux littéraire */
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Carrousel conteneur */
.swiper-container {
    width: 100%;
    max-width: 350px; /* Limite la largeur du carrousel */
    margin: auto;
    padding-bottom: 40px;
}

/* Carrousel Slide */
.swiper-slide {
    width: 280px;         /* Taille plus compacte */
    height: 380px;        /* Proportions ajustées */
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 15px;       /* Espacement entre les slides */
}

/* Image dans le slide */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Remplissage sans déformation */
    object-position: center;  /* Centre l’image pour éviter la déformation */
    border-radius: 12px;
}

/* Pour les petits écrans (mobile) */
@media (max-width: 768px) {
    .swiper-slide {
        width: 200px;
        height: 300px;
    }
}

.swiper-button-prev,
.swiper-button-next {
    color: darkred;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 24px;
}
.swiper-button-prev {
    left: -30px;
}

.swiper-button-next {
    right: -30px;
}

#bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
}

#bubbles-container .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, orangered, darkred);
    filter: blur(5px);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-50px);
    }
}
.contact-form {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    width: 320px;
    text-align: center;
    z-index: 5;
}
.contact-form h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    background: white;
    color: #f5a623;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #f5a623;
    color: white;
}

.cv-image {
    max-width: 60%;  /* Limite la largeur à 80% de l'écran */
    height: auto;    /* Garde les proportions de l'image */
    border-radius: 10px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.download-btn {
    background: #f5a623;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #e89c19;
}

.presentation {
    padding: 4em 2em;
    max-width: 900px;
    margin: auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    justify-content: center;
}

.presentation-text p {
    font-size: 1.2rem;
    color: #ccc;
    transition: color 0.3s ease, opacity 0.3s ease;

}

.grid-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* taille minimale réduite */
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.item {
    aspect-ratio: 1 / 1;
    max-width: 280px; /* réduit encore la taille maximale */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.item:hover {
    transform: scale(1.03);
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
}

.titre-superpose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem; /* taille réduite du texte */
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    text-align: center;
}

.titre-galerie {
    position: relative;
    width: 160px;
    height: 160px;
    line-height: 160px;
    text-align: center;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 2rem;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    box-sizing: border-box;
    text-shadow: 1px 1px 2px #000;
}

.titre-galerie::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;

    /* Dégradé rouge → noir */
    background: radial-gradient(circle at center, #ff0000, #000000);

    /* Animation de brillance */
    box-shadow:
            0 0 20px rgba(255, 0, 0, 0.6),
            0 0 40px rgba(255, 0, 0, 0.4),
            0 0 60px rgba(255, 0, 0, 0.2);

    animation: pulseGlow 2.5s ease-in-out infinite;
    z-index: -1;
}

/* Animation de brillance pulsée */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
                0 0 20px rgba(255, 0, 0, 0.6),
                0 0 40px rgba(255, 0, 0, 0.4),
                0 0 60px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow:
                0 0 30px rgba(255, 0, 0, 0.8),
                0 0 60px rgba(255, 0, 0, 0.6),
                0 0 90px rgba(255, 0, 0, 0.4);
    }
}

.section-contact {
    padding: 5rem 2rem;
    font-family: 'League Spartan', sans-serif;
}

.container-contact {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.contact-gauche {
    flex: 1 1 40%;
    text-align: left;
}

.titre-contact {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.titre-contact span {
    color: #e60026; /* rouge vif ou ta couleur */
}

.infos-contact p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #444;
}

.contact-droite {
    flex: 1 1 50%;
}

.formulaire-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.couleur{
    color: white;
}

.formulaire-contact input,
.formulaire-contact textarea {
    padding: 1rem;
    border: 2px solid #ccc;
    font-size: 1rem;
    border-radius: 8px;
    transition: border 0.3s ease;
    background-color: transparent;
}

.formulaire-contact input:focus,
.formulaire-contact textarea:focus {
    outline: none;
    border-color: #e60026;
}

.btn-envoyer {
    background-color: #e60026;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-envoyer:hover {
    background-color: #b0001d;
}

.section-a-propos {
    padding: 6rem 2rem;
    font-family: 'League Spartan', sans-serif;
}

.contenu-a-propos {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.texte-gauche {
    flex: 1 1 50%;
}

.titre-a-propos {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.titre-a-propos span {
    color: #e60026; /* Accent rouge */
}

.intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}
.btn-cv {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e60026;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    transition: background 0.3s ease;
}

.btn-cv:hover {
    background-color: #b0001d;
}

.competences-defilantes {
    overflow: hidden;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 1rem 0;
}

.marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: defilement-logos 20s linear infinite;
}

.logos {
    display: flex;
    gap: 3rem;
}

.logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logos img:hover {
    filter: grayscale(0%);
}

/* Animation */
@keyframes defilement-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mes-passions {
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d72638; /* ton rouge artistique */
}

.carte-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.carte {
    width: 250px;
    height: 350px;
    perspective: 1000px;
    position: relative;
    overflow: visible;
    margin: 1rem;
    border-radius: 15px;
}

.carte-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; /* garde les faces dans l'espace 3D */
    transition: transform 0.8s;
}

.carte:hover .carte-inner {
    transform: rotateY(180deg);
}

.carte-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carte-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carte-back {
    background: black;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column; /* <-- clé ici */
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    border: 2px solid #d72638;
    box-shadow: 0 0 15px rgba(215, 38, 56, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    overflow: hidden;
}
.carte-back p {
    overflow-y: auto;
    max-height: 200px; /* à ajuster selon la hauteur de ta carte */
    scrollbar-width: thin;
    scrollbar-color: #d72638 transparent;
    margin-top: 0.5rem;
}

/* Pour les navigateurs WebKit */
.carte-back p::-webkit-scrollbar {
    width: 5px;
}
.carte-back p::-webkit-scrollbar-thumb {
    background-color: #d72638;
    border-radius: 10px;
}

.carte-back h3 {
    font-size: 1.4rem;
    color: #e60026;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.containerprojet {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    align-items: flex-start;
}

.video-box {
    flex: 3;
}

.video-box video {
    width: 100%;
    border: 4px solid black;
}

.text-box {
    flex: 5;
}


.text-box h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-box p {
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }
    .video-box, .text-box {
        flex: unset;
        max-width: 100%;
    }
}

.tools-used {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    width: 100%;
    text-align: center;
}

.tools-used h2 {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tools-list span {
    background: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.tools-list span:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff3d00, #ff9100);
    color: #fff;
}

.back-button {
    margin-top: 50px;
    text-align: center;
}

.back-button a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff3d00, #ff9100);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.media-box {
    flex: 3;
    position: relative;
    max-width: 100%;
}

.media-box img {
    width: 75%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    border: 4px solid white;
    border-radius: 4px;
}


.projet-ely-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.projet-ely-media {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projet-ely-media img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border: 4px solid white;
    border-radius: 8px;
}

.projet-ely-texte {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projet-ely-texte h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.projet-ely-texte p {
    font-size: 17px;
    line-height: 1.7;
}

/* Responsive : pile sur petits écrans */
@media (max-width: 900px) {
    .projet-ely-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .projet-ely-media,
    .projet-ely-texte {
        max-width: 100%;
        flex: unset;
    }

    .projet-ely-texte {
        text-align: center;
    }
}

.projet-ely-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.projet-ely-gallery img {
    width: 22%;
    border: 3px solid white;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.projet-ely-gallery img:hover {
    transform: scale(1.03);
}

/* Responsive : 2 images par ligne sur petits écrans */
@media (max-width: 768px) {
    .projet-ely-gallery img {
        width: 45%;
    }
}

/* Une par ligne si très petit écran */
@media (max-width: 500px) {
    .projet-ely-gallery img {
        width: 100%;
    }
}
.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
}

.image-box {
    width: 600px;        /* largeur fixe */
    height: 350px;       /* hauteur fixe */
    overflow: hidden;
    border-radius: 10px;
    border: 4px solid white;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Remplit la box uniformément */
    display: block;
}
.photographie-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    color: white;
}
.photographie-page h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: white;
}

.photo-category {
    margin-bottom: 60px;
}

.photo-category h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 4px solid #ff3d00;
    padding-left: 10px;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.photo-grid img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border: 4px solid white;
    border-radius: 8px;
}

.categorie-section {
    padding: 60px 20px;
    text-align: center;
}

.categorie-section h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
}

.grid-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.grid-photos img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border: 4px solid white;
    border-radius: 8px;
}

.photo-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    color: #f0f0f0;
}

.photo-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff9100;
}

.photo-intro p {
    font-size: 16px;
    line-height: 1.8;
}

.bloc-dessin {
    margin-top: 3rem;
    text-align: center;
}

.bloc-dessin h2 {
    margin-top: 1rem;
    font-size: 1.6rem;
    color: white;
    text-shadow: 1px 1px 2px black;
}

.bloc-dessin p {
    color: #e0e0e0;
    font-size: 1rem;
    max-width: 700px;
    margin: 0.5rem auto;
}

.fiche-projet img.visuel-projet {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.fiche-projet h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: white;
}

.galerie-dessin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.galerie-dessin img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.galerie-dessin img:hover {
    transform: scale(1.05);
}

.domaines-travail {
    padding: 3rem 1rem;
    background-color: #111;
    text-align: center;
}

.domaines-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.domaine {
    flex: 1 1 300px;
    max-width: 400px;
}

.domaine img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.domaine img:hover {
    transform: scale(1.02);
}

.titre-domaines {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'League Spartan', sans-serif;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(255, 0, 0, 0.4);
    letter-spacing: 2px;
}
