body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

header {
    display: flex;
    background-color: #f2d2d2; /* Fond rose bébé */
    padding: 20px;
    align-items: center;
}

.header-left img {
    max-width: 100%;
    height: auto;
    width: 300px; /* Ajuste la taille de l'image à ton besoin */
}

.header-right {
    text-align: center;
    flex-grow: 1;
}

.header-right h1 {
    font-size: 3em;
    background-color: #f2d2d2; /* Fond rose bébé */
    color: red; /* Texte en rouge */
    margin: 0;
    padding: 10px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em; /* Taille du texte du menu */
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #f2d2d2; /* Couleur au survol */
}

header nav {
    border-bottom: 3px solid white; /* Ligne blanche sous le menu */
}

.welcome h2 {
    background-color: red;
    color: white;
    padding: 20px;
    font-size: 2em;
    text-align: center;
}

.background {
    background: url('/images/image2.jpg') no-repeat left center, url('/images/image3.jpg') no-repeat right center;
    background-size: 50% 100%; /* Les images sont maintenant côte à côte */
    position: relative;
    height: 500px; /* Ajuste la taille de la section pour que les images soient visibles */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-overlay {
    background-color: rgba(255, 255, 255, 0.75); /* Fond blanc semi-transparent derrière le texte */
    padding: 20px;
    width: 80%;
    text-align: center;
    border-radius: 10px;
}

.pink-text {
    color: #ff3131;
    font-size: 1.5em; /* Augmenter la taille du texte */
    font-weight: bold;
}

.black-text {
    color: black;
    font-size: 1.5em; /* Augmenter la taille du texte */
    margin-top: 10px;
}

.specialties {
    text-align: center;
    padding: 20px;
}

.specialties ul {
    list-style-type: none;
    padding: 0;
}

.specialties ul li {
    display: inline-block;
    margin: 15px;
    background-color: #f2d2d2; /* Fond rose */
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2em;
}

footer {
    background-color: pink;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
