@import url(https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap);

:root{
    --blue:#070096;
    --orange:#FFAE00;
    --lightblue:#89E3FF;
    --white:#FFFFFF;
    --purple:#7557B1;
}

html {
    overflow-x: hidden ;
}

/* la typo appliquée a tous les textes */
a{
    font-size: 40px;
    font-family: 'Kodchasan';
    font-weight: 500px;
}

p{
    font-size: 30px;
    font-family: 'Kodchasan';
}

h1{
    font-size: 40px;
    font-family: 'Kodchasan';
    font-weight: 500px;
}


/* header*/
header{
    display:flex;
    justify-content: space-between;
    background:-webkit-linear-gradient(var(--blue), var(--lightblue));
    padding:20px;
}

header a, p{
    color:var(--orange);
    text-decoration: none;
}

#left{
    display:flex;
}

#right{
    display: flex;
    right:0;
}

#gauche{
    top:0;
    margin:40px;
}

#droit{
    right: 0;
    margin:40px;
}

/*body*/
body{
    margin: 0;
    background-color: var(--blue);
    max-width: 100%;
}

.section1 h1{
    text-align: center;
    justify-content: center;
    color:var(--orange);
}

.contenu{
    display: flex;
    align-items: center;
    padding:10px;
    margin: 20px auto;
}

.texte{
    flex:1;
}

.image{
    display: flex;
    position: relative;
    background-color: var(--purple);
    border-radius: 10%;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
}

.image img{
    max-width: 300px;
    height: auto;
    display: block;
}

/*footer*/
footer{
    display:flex;
    justify-content: center;
    background:-webkit-linear-gradient(var(--lightblue), var(--blue));
    padding:20px;
    flex-direction: column;
}

footer p{
    color:var(--orange);
    text-align: center;
}

.instalink{
    display: flex;
    margin: auto;
}

.reseaux{
    text-decoration: none;
    padding:10px;
    color: var(--white);
    font-size: 70px;
}