body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; /* Utilisation de Flexbox */
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    background-image: url('background.jpg'); /* Remplacez par votre image */
    background-size: cover;
    background-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(243deg, #1d70b7 6.44%, #1D70B7 94.86%);
    z-index: 1;
	opacity: 0.2;

}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px 20px 100px;
    max-width: 800px;
    width: 100%; /* Assure que le contenu prend toute la largeur disponible */
}

.content h1, .content p, .event-logos {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-in-out forwards;
}

.content h1 {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    animation-delay: 0.2s;
	line-height: 1;
}



.content p:nth-of-type(1) {
    animation-delay: 0.4s;
	letter-spacing: 1px;
	font-size: 1.5rem;
	margin-top: 10px;

}


.content .events p {
    animation-delay: 0.4s;
	letter-spacing: 0;
	font-size: 1.2rem;
	margin-bottom: 35px;
	font-weight: 700;


}

.content p:nth-of-type(2) {
/*    animation-delay: 0.6s;*/
}

.events {
    margin-top: 2rem;
}

.event-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.7rem;
    animation-delay: 0.8s;
}

.event-logos a {
    display: inline-block;
}

.event-logos img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.event-logos a:hover img {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .content h1 {
        font-size: 3rem;
    }

    .content p {
        font-size: 1rem;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
