/* Page crée par Parent Julien le 13 janvier 2025 */
body {
    background-color: #ff4800;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    width: 100%;
    padding: 15px;
}
.star {
    font-size: 80px;
    text-align: center;
    color: black;
    padding: 20px 0;
    margin-bottom: 40px;
}
.container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: auto;
}
img {
    width: 100%;
    height: 100%;
    display: block;
    margin-right: 40px;
    border-radius: 15px;
}
section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    text-align: center;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
}
p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
}
.sliders {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.slider_gauche_droite {
    display: flex;
    gap: 40px;
}
.slider_solo {
    flex: 50%;
    display: flex;
    flex-direction: column;
}
slider2{
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
    font-weight: bold;
    text-align: center;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 48px;
        text-align: center;
    }

    .slider-row {
        flex-direction: column;
        gap: 20px;
    }
}
a {
    text-decoration: none;
    color: black;
    margin-left: 20px;
    font-weight: bold;
    border: 1px solid black;
    padding: 5px;

}

