body {
    font-family: Arial, sans-serif;
    text-align: center;
    /* centre le contenu */
    background-color: #f9f9f9;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centre horizontalement */
    gap: 12px;
    /* espace entre les boutons */
}

h1 {
    margin-bottom: 20px;
    background-color: rgb(163, 218, 101);
    padding: 10px;
    border-radius: 10px;
    color: green;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* centre le contenu global */
    width: 250px;
    /* largeur fixe */
    height: 25px;
    /* hauteur fixe */
    padding: 10px 16px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
}

.icon {
    position: absolute;
    /* fixe l’image à gauche */
    left: 10px;
    width: 30px;
    height: 30px;
}

.label {
    text-align: center;
    /* centre le texte */
    flex: 1;
    /* occupe tout l’espace dispo */
}


.btn:hover {
    background-color: #c0392b;

    /* effet hover */
    .icon {
        position: absolute;
        /* fixe l’image à gauche */
        left: 10px;
        width: 50px;
        height: 50px;
    }
}