body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #555555;
    font-size: 1.2rem;
    margin: 0;
    padding: 2rem;
}

header, main, footer {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.logo {
    height: 150px;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.2rem;
    color: #555555;
}

h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #555555
}

h2 {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #107faa;
}

h3 {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #555555;
}

.btn-container {
    text-align: center; /* centre le bouton dans le conteneur */
    margin-top: 2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Conteneur centré */
.btn-container {
    text-align: center;
    font-size: 5.5rem;
    margin-top: 2rem;
}

/* Bouton animé */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    color: white;
    background-color: #107faa;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    animation: bounce 1.5s infinite;
}

.btn:hover {
    background-color: #ed4540;
    animation: none; /* option : stop l’animation quand la souris passe dessus */
}


footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
}

.custom-list {
    list-style: none;           /* Supprime les puces */
    padding-left: 0;
    display: grid;      /* Permet de centrer horizontalement */
    text-align: center;

}

.custom-list li {
    display: inline-block;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;

}

.custom-list .material-icons {
    color: #555555;
    margin-right: 8px;
    font-size: 24px;

}

main {
    text-align: center;
    }

.custom-list-contact {
    list-style: none;
    padding: 0;
    display: flex;              /* Affiche en ligne */
    gap: 2rem;                  /* Espace entre les éléments */
    justify-content: center;    /* Centre les éléments */
    margin-top: 1rem;
}

.custom-list-contact li {
    display: flex;
    align-items: center;
}

.custom-list-contact .material-icons {
    color: #555555;
    margin-right: 8px;
    font-size: 24px;
}

.custom-list-contact a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}
