body {
	margin: 0;
    background: linear-gradient(to right, #fc72ff, #8f68ff, #487bff, #8f68ff, #fc72ff );
    background-size: 300%;
    animation: AnimationEcran 10s linear infinite;
}

@keyframes AnimationEcran {
to {background-position: 150%;}
}

.banner {
    background: linear-gradient(135deg, #c0540c 0%, #8a3a0a 120%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner_content {
	font-family: rubik;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner ul {
    display: flex;
    gap: 32px;
}

.banner li {
    list-style: none;
}

.banner a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.banner a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.texte_acceuil {
    font-family: 'Segoe UI';
    text-align: center;
}

.texte_acceuil h1 {
    font-size: 48px;
}

.texte_acceuil p {
    font-size: 24px;
}

.apres_carte p {
    font-family: 'Segoe UI';
    text-align: center;
    font-size: 24px;
}

.apres_carte a {
    font-family: 'Segoe UI';
    text-align: center;
    font-size: 24px;
    color: #007bff;
    text-decoration: none;
}


.map {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

iframe {
    border-radius: 8px;
    width:600px; 
    height:450px;
    transition: 0.3s ease;
}
