/*Polices*/
@font-face {
    font-family: galato;
    src: url(Galato2.otf);
}
@font-face {
    font-family: sageffine;
    src: url(Sageffine.otf);
}

/*sections*/
body{
    background-image: url('../images/fond_aquarelle.png'); 
    background-size: cover; 
    background-attachment: fixed;
}
body > :not(header):not(footer) {
    padding: 10px;
}

header{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; /*autorise le passage sur 2 lignes*/
    border: #CABCE4 10px solid;
    border-radius: 50px;
    padding: 20px 0px 0px 0px;
}
header figure img{
    height: clamp(50px, 15vw, 100px);
    border-radius: 20%;
}
header figure{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
header figcaption{
    color: #6D445D;
    font-size: 35px;
    font-family: "sageffine";
    font-weight: bold;
    padding: 15px;
}

footer{
    border: #CABCE4 10px solid;
    border-radius: 50px;
    padding: 10px 0px 10px 0px;
    display: flex;
    justify-content: space-evenly;
}
footer img{
    height: 80px;
}

/*zones de texte*/
h1{
    color: #98719B;
    font-size: 80px;
    text-align: center;
    font-family: "galato";
}
h2{
    color: #6D445D;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "sageffine";
    font-weight: bold;
}
details{ /*copier le p*/
    color: #6D445D;
    font-size: 35px;
    font-family: "sageffine";
    font-weight: bold;
}
summary{ /*h2 sans uppercase*/
    color: #6D445D;
    font-size: 40px;
    font-family: "sageffine";
    font-weight: bold;
}
p{
    color: #6D445D;
    font-size: 35px;
    font-family: "sageffine";
    font-weight: bold;
}
ul{ /*copier le p*/
    color: #6D445D;
    font-size: 35px;
    font-family: "sageffine";
    font-weight: bold;
}

/*autres éléments*/
a{
    text-decoration: none;
    color: inherit;
}
a :hover{
    transition: transform 0.5s ease;
    transform: scale(1.1)
}

.print{
    display: none;
}
