@import url('https://fonts.googleapis.com/css2? family= Whisper & display=swap');

@import url('https://fonts.googleapis.com/css2? family= Caveat & display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    font-family: 'Whisper', cursive;
    display: flex;
    flex-direction: column;
}
header{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 3px blue solid;
}
main{
    font-family : 'Caveat', cursive ;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
    border-bottom: 3px blue solid;
}
head nav{
    width: 100%;
    display: flex;
}
header nav a{
    color: brown;
    text-decoration: none;
    font-size: 40px;
    padding: 20px;
}
main img{
    width: 50%;
    height: 50%;
    border-radius: 20px;
}
main section p{
    display: flex;
    justify-content: center;
    color: brown;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 20px;
}
.texte{
    font-family : 'Caveat', cursive ;
    font-size:20px;
    color: brown;
    margin-top: 5px;
}
footer {
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0;
    margin-top: 30px;
}
main div{
    display: flex;
    justify-content: space-between;
}
main div .texte{
    margin-left: 15px;
    margin-right: 15px;
    text-align: justify;
}
