/*HEADER */

/* branding */

p, h1, h2, h3, h4, h5{
    font-family: source-sans-pro, sans-serif;
}


.logo{
    width:200px;
}
.logo img{
    width:100%;
}
li{
    vertical-align: middle;
    color:#000;
}

li a{
    color:#000;
}

li a:hover{
    text-decoration: none;
}

.demo{
    color:#fff;
    background-color:black;
    padding:5px 15px;
    border-radius: 150px;
    height:30px;
}

.demo a{
    height:100%;
    color:#fff;
    margin:auto;
    text-align: center;
    padding-top:3%;
}

.demo:hover{
    background-color:#8968F7;
}

/* FOOTER */

footer{
    display:flex;
    flex-direction: row;
    width:100%;
    background-color: #F0F1F2;
}

.contact, .liens, .copyright{
    width:33%;
    margin:0 auto;
}

h5{
    width:80%;
    margin:0 auto;
    font-weight: 600;
    
}

/* formulaire email */

.email{
    display: flex;
    flex-direction: row;
    background-color:#fff;
    border-radius: 50px;
    width:80%;
    margin:20px auto;
    height:40px;
    vertical-align: middle;
}

.email input{
    margin:0 auto;
    border:none;

}

.envoyer{
    background-image: url(../img/icon-envoyer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    position:relative;
    
}

/* liens */
.liens-content{
    display:flex;
    flex-direction: row;
    width:80%;
    margin:0 auto;
}

.liens-content p{
    text-decoration: underline;
}

.item50{
    width:50%;
    flex-direction: column;
}

/* copyright */

.copyright p{
    width:80%;
    margin:20px auto;
}

/*buttons */

.button{
    width:30%;
    margin:20px auto;
    display:flex;
    background-color:#000;
    height:50px;
    border-radius:50px;
}

.button a{
    text-align: center;
    margin: auto;
    color:#fff;
    font-size: 16px;
}

.button:hover{
    cursor: pointer;
    background-color:#8968F7;
}

.button:hover a{
    text-decoration: none;
}