* {
    font-family: 'Josefin Sans';
}

html {
    background-color: #310055;
}

body {
    /* background: linear-gradient(to bottom right, #005583, #ffffff); dégradé mauve --> blanc */
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* a changer mettre une div et centrer element manuellement*/
}

img {
    border: solid black 2px;
    border-radius: 50%;
    box-shadow: 5px 5px 10px 0px #D283FF;

}

h1,
h2 {
    text-align: center;
    color: #fff;
    font-family: 'Cinzel';
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
}

a {
    display: block;
    text-align: center;
    margin-top: 20px;
}

#accueil {
    display: inline-block;
    padding: 10px 20px;
    background-color: #AB51E3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#accueil:hover {
    background-color: #ff0000;
}