* 
{
margin: 0;
}
  
body {
font-family: 'Manrope', sans-serif;
font-size: 1em;
background-color: #1f2039;

}

a {
color: #242424;
text-decoration: none;
}

em {
color: #a5b4fc;
font-style: normal;
}

h1 {
font-size: 3.5em;
color: #a5b4fc;
font-family: 'Montserrat', sans-serif;
}

h2 {
color: #f9f8ff;
}

p, li {
  font-size: 1.1em;
  color: #f9f8ff;
}

nav a{margin-left: 20px;}
footer .lien-icone{margin-left: 20px;}

header, footer {
  background-color: white;
  padding: 20px 50px;
}

.cta{
    background: linear-gradient(#8e86b5, #acaeed);
    color: white;
    border-radius: 50px;
    padding: 20px 30px;
    display: inline-block;
}

.cta:hover{
    background: linear-gradient(#696484, #8788ba);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.lien-icone:hover {
    opacity: 0.5;
}


section {
    padding: 80px;
}

header nav, footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media screen and (max-width : 996px) {

    header nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }

    header nav img {
      margin-bottom: 20px;
    }

    p, li{
        font-size: 1em;
    }
    h1{
        font-size: 1.5em;
    }
    header, footer {
        padding: 10px 25px;
    }
    nav a{
        margin-left: 10px;
        margin-right: 10px;
    
    }
    footer .lien-icone{margin-left: 10px;}

    section {
        padding: 20px;
    }
}