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

header {
    background: #ff5722;
    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 10px;
}

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

.menu img {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

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

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

.star-image img {
    width: 1000px; /* Augmenté de 500px à 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: #009688;
    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: 500px; /* Ajustement de la taille sur les petits écrans */
    }

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