*{margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, footer{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
}

header h1{
    font-size: 60px;
}
/*font d'écran de la section de l'animation*/
.animation{
    height: 100vh;
    background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    position: relative;
    overflow: hidden;
}
/*positionnement et taille de l'image utilisée pour l'animation*/
.paper-plane{
    height: 100px;/*taille de l'image*/
    position: relative;/*position par rapport au container*/
    top: 50%;/*position de l'image en haut par rapport au container*/
    left: 0%;/*position de l'image à gauche par rapport au container*/
}
