
body {
    background-color: #f4f9f4;
    color: #3e4e3e;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

header {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #c2d6b2;
}

header h1 {
    font-family: 'Brush Script MT', Cursive;
	font-size: 3em;
    color: #3e4e3e;
}

header p {
    font-size: 1.5em;
    color: #3e4e3e;
}


.main-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    background-color: #eaf4e2;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.carousel {
    display: flex;
    width: 100%;
    animation: scroll 20s linear infinite;
}

.carousel img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

#toggleCarousel {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #a5cfa5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.text-container {
    font-family: 'Brush Script MT', Cursive; 
    width: 50%;
    font-size: 1.5em;
    color: #3e4e3e;
}

.links {
    background-color: #FBF7EC;
    padding: 20px;
    text-align: center;
}

.links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 15px;
    background-color: #b6d7a8;
    color: #2e3d2e;
    text-decoration: none;
    border-radius: 5px;
}

.remerciements {
    background-color: #FBF7EC;
    padding: 20px;
    text-align: center;
}


form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
}

form label {
    margin-top: 10px;
}

form input, form select, form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #b22222;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #c2d6b2;
    font-size: 1.2em;
    color: #3e4e3e;
}


