/* Mise du corps du site */
* {
    margin: 0;
}

body{
    font-family: "Nunito", serif;
    font-size: 1.3em;
    background: white;
}

header, footer{
    background-color: white;
    padding: 10px 10px;
    font-size: 0.8em;
}

footer, nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

footer p{
    color: rgb(160, 160, 160);
}
nav a{
    margin-left: 30px;
    text-decoration: none;
    color: black;
    padding-right: 30px;
}
.onglet{
    position: relative;
    top: 50px;   
}
header{
    border-bottom: 1.5px solid rgb(132, 132, 132);
}
footer{
    border-top: 1.5px solid rgb(132, 132, 132);
}


/* Code couleur des titres*/

h1{
    font-size:1.8em ;
    font-family: "Nunito", serif;
    text-align: center;
    text-decoration: solid;
}

h2{
    font-size:2em ;
    font-family: "Nunito", serif;
    text-decoration: solid;
}

section{
    padding: 50px;
    padding-left: 80px;
    padding-right: 80px;
}

a {
font-family: "Nunito", serif;
font-size: 2em;
}

/* Effets liens & images*/
a:hover{
    color: rgb(1, 1, 60);
    text-decoration: underline;
}
a:active{
    color: rgb(2, 112, 116);
}
img:hover{
    opacity: 0.9;
}
.photo{
    border-radius: 20px;
    border: 1.5px solid rgb(37, 37, 37);
    width: 600px;
    height: 400px;
}

.photo2{
    border-radius: 20px;
    border: 1.5px solid rgb(37, 37, 37);
    width: 600px;
    height: 400px;
}

/* Adaptation aux écrans laptop et mobiles */

@media only screen and (min-width:996px) and (max-width: 1599px) {
    a {
        font-family: "Nunito", serif;
        font-size: 1.5em;
        }
    h1{
        font-size:1.4em ;
        font-family: "Nunito", serif;
        text-align: center;
        text-decoration: solid;
    }
}

@media only screen and (max-width:996px) {
    body{
        font-size:1em;
    }

    header,footer{
        font-size:0.7em;
    }
    header{
        padding:2px;
        
    }
    footer{
        text-align:center;
    }
    nav a{
        margin-left: 0px;
        padding-right: 5px;
    }
    .onglet{
        position: relative;
        top: 10px;   
    }
    img{
    width: 80px;
    height: 80px;
    }
    section{
        padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .photo{
        border-radius: 20px;
        border: 1.5px solid rgb(37, 37, 37);
        width: 400px;
        height: 270px;
    }
    .photo2{
        border-radius: 20px;
        border: 1.5px solid rgb(37, 37, 37);
        width: 400px;
        height: 270px;
    }
    a {
        font-family: "Nunito", serif;
        font-size: 1em;
        }

}