@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital@0;1&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #eceff8;
    padding: 0;
    margin: 0;
    color: #06041a;
}

body .page {
    margin: 20px 80px;
}

body .page .retour_accueil button {
    font-family: 'Roboto', sans-serif;
    padding: 7px 20px;
    background-color: #747cdf;
    font-size: 17px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 45px;
    transition: transform 0.5s;
}

body .page .retour_accueil button:hover {
    transform: scale(1.07);
}

body .page .retour_accueil button a {
    text-decoration: none;
    color: #fff;
}

header {
    background-repeat: no-repeat;
    background-size: 100px 100px;
}

.image {
    float: right;
    margin: 20px 0px 20px 0;
}

header p {
    font-family: 'EB Garamond', serif;
    text-align: left;
    font-style: italic;
    font-weight: 500;
    font-size: 27px;
    padding: 5px;
    color: #02010a;
}

.signature {
    font-family: 'Lato', sans-serif;
    padding: 25px 100px;
    color: #99a6d1;
    margin-left: 700px;
    font-size: 20px;
    color: #090327;
}

header .btn {
    font-family: 'Roboto', sans-serif;
    padding: 7px 20px;
    background-color: #747cdf;
    font-size: 17px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 45px;
    transition: transform 0.5s;
    color: #fff;
}

/* Pour l'affichage correct sur smartphone, tablette */
@media screen and (max-width: 640px) {
    body .page {
        margin: 10px;
    }

    nav .onglets {
        display: none;
    }

    header {
        margin-top: 20px;
        background-size: 25.px 25.px;
    }

    header h1 {
        font-size: 30px;
        padding: 100px;
    }
}