*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #99c94d, #79c721);
}

nav {
    background-color: #1da345;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #095c2d; 
}

.home {
    text-align: center;
    margin-top: 50px;
    position: relative; 
}

h1 {
    font-size: 36px;
    color: #333;
    text-align: center;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%); 
}

img {
    max-width: 80%; 
    border-radius: 150px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
    margin-top: 120px; 
}
a {
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #ff0000;
}
/* Effet au clic */

/* Flèche animée */
.fleche {
    position: absolute;
    top: 30%; 
    left: 5%; 
    transform: translateY(-50%); 
    width: 500px;
    height: 50px;
    background: url('./Images_du_Site/fleche.png') no-repeat center;
    background-size: contain;
    animation: arrow-bounce 0.6s infinite alternate;
 
}

@keyframes arrow-bounce {
    0% {
        transform: translateY(-50%) translateY(0);
    }
    100% {
        transform: translateY(-50%) translateY(-50px);
    }
}


/* Styles pour le bandeau en bas de la page */
footer {
    background-color: #1da345; 
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
.textebandeau{
    font-size: 30px;
    color: #333;
}
.clickAnim {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to top, #ff4e50, #f9d423); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    position: absolute;
    z-index: 9000;
    transform: scale(0);
    transform-origin: center;
    animation: clickAnim 1s ease-in-out;
}

@keyframes clickAnim {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(2);
        opacity: 1;
    }
    0% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Anim input */

label, input {
    width: 500px;
    margin: 5px auto;
    display: block;
}
label {
    margin-top: 35px;
}
input {
    padding: 10px;
    margin-bottom: 30px;
    outline: none;
    border: 1px solid #000;
}

/*Animation */

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }
  
  #container {
    height: 500vh;
  }


  
