body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: #00796b; /* Nouvelle couleur de fond */
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

header .title {
    font-size: 1.5rem;
    margin: 0;
}

header .phone {
    font-size: 1rem;
    margin: 0;
    margin-top: 5px;
}

.menu {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

.menu li {
    margin: 0 15px; /* Augmentation de l'espace autour des éléments du menu */
}

.menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu img {
    margin-right: 10px;
    width: 30px; /* Augmentation de la taille des pictogrammes */
    height: 30px;
}

main {
    padding: 20px;
    text-align: center;
}

.star-image {
    margin: 20px 0;
}

.star-image img {
    width: 850px; /* Réduction de la taille des étoiles de 15% par rapport à 1000px */
    height: auto;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

footer {
    background: #004d40; /* Nouvelle couleur de fond */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 600px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
    }

    .star-image img {
        width: 600px; /* Ajustement de la taille sur les petits écrans */
    }

    main {
        text-align: center; /* Centrage du texte sur mobile */
    }
}
