* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #FEE2D3;
}

#schema {
    width: 70%;
    margin: auto;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

main {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Munken Sans', sans-serif;
    text-align: center;
}

main h1 {
    font-family:'Gunnar Cutout', sans-serif;
    text-transform: uppercase;
    font-size: 3em;
}

#isabelle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url('../images/2-quisuisje/quisuisje-portrait.svg');
    transition: 0.5s;
}

#isabelle:hover {
    transition: 0.5s;
    background-image: url('../images/2-quisuisje/quisuisje-photo.svg');
}

main p {
    margin: 10px 0;
}

main h2 {
    margin-top: 200px;
    font-size: 2em;
}

#accompagnements {
    width: 80%;
}

#accompagnements li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

#accompagnements li img {
    width: 20%;
    height: auto;
    margin-right: 20px;
}

#accompagnements li p {
    width: 70%;
    text-align: left;
    font-size: 1.2em;
    font-weight: 500;
}

#quote {
    width: 100%;
}

#quote h2 {
    margin-bottom:0;
}

#quote h3 {
    margin: 0;
    margin-bottom: 50px;
    font-size: 1.3em;
}

#quote p {
    font-weight: 500;
    font-size: 1.2em;
}

#parent {
    width: 25%;
}

.padd {
    padding-bottom:10vh;
}

a.external {
    background-color: #E07D91;
    color: #242A0F;
    text-decoration: none;
}

a.external:hover {
    transition: 0.5s;
    background-color: #CEC8FF;
}






@font-face {
    font-family: 'Gunnar Cutout';
    src: url('../fonts/Gunnar-Cutout.woff2') format('woff2'),
        url('../fonts/Gunnar-Cutout.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Munken Sans';
    src: url('../fonts/MunkenSans-Regular.woff2') format('woff2'),
        url('../fonts/MunkenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Munken Sans';
    src: url('../fonts/MunkenSans-Medium.woff2') format('woff2'),
        url('../fonts/MunkenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Munken Sans';
    src: url('../fonts/MunkenSans-Bold.woff2') format('woff2'),
        url('../fonts/MunkenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}