/* mise en place de la police Roboto sur toute la page*/
body{
    font-family: 'Roboto', sans-serif;
    max-width: 1280px;
    margin: auto;
    background-color: #555;
}

header, main{
    background-color: white;
}

/*enlever le surlignage des liens et mettre en noir la police pour les liens*/
a{
    text-decoration: none;
    color: #000;
}

ul{
    /* enlever les puces sur la liste*/
    list-style-type: none;
    /*j'enleve le padding-left par défaut*/
    padding-left: 0px;
}

h2{
    font-size: 30px;
}

.fonctionnement{
    padding-left: 35px;
    padding-right: 35px;
}









header h1{
    margin: 0px;
    text-align: center;
    padding: 10px;
}

header h1 img{
    padding-top: 15px;
    height: 50px;
    object-fit:contain;
}



.coeur{
    font-size: 30px;
    align-self: center;
}

/*animation coeur avec transition sur le survol*/
.coeur.plein{
    align-self: center;
    position: absolute;
    right: 15px;
    opacity: 0;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image:linear-gradient(to bottom,#9356DC, #FF79DA);
    transition: all 500ms;
}

.coeur.plein:hover{
   opacity: 1;
}







footer {
    background: #353535;
    color: white;
    height: 220px;
}

footer ul li a{
    padding-left: 20px;
    color: white;
}

footer ul li a i{
    width: 20px;
    margin-right: 15px;
}

footer .liens{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 150px;
}

footer h2{
    font-family: 'Shrikhand', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin: 0px;
    padding: 20px 0px 0px 20px;
}
