/*police*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400&display=swap');
/*variable*/
:root{
    /*couleur*/
    --couleur1: #84BFAB;
    --couleur2: #588072;
    --arriere-plan-couleur: #AFFFE4;
    --couleur4: #2C4039;
    --couleur3:  #9EE6CE ;
    --couleur5: #ffffff;
}

/* Normalisation supplémentaire 
============================================================================= */
*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select:none;
}

/* Mise en page
============================================================*/
html {
    /*TAILLE*/
    width: 100vw;
    height: 100vh;
    max-width: 100%;

    /*TAILLE POLICE*/
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(14px, 0.5rem + 0.5vw, 24px);
}

body {
    /*TAILLE*/
    max-width: 100%;
    height: 100%;  

    /*COULEUR*/
    background-color: var(--arriere-plan-couleur);
    color: var(--couleur5);

    /*BARRE*/
    overflow: hidden;
}

main {
    /*TAILLE*/
    width: 100vw;
    height: 100vh;

    /*AFFICHAGE*/
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    /*TAILLE*/
    min-height: 15vh;
    width: 100%;

    /*TAILLE*/
    text-align: center;

    /*COULEUR*/
    background-color: var(--couleur3);

    /*AFFICHAGE*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

footer {
    /*TAILLE*/
    min-height: 10vh;
    width: 100vw;

    /*POSITION*/
    position: fixed;
    bottom: 0;
    text-align: center;

    /*AFFICHAGE*/
    display: flex;
    justify-content: center;
    align-items: center;

    flex: 0 0 auto;

    /*OPACITE ET FILTRE*/
    opacity: 0;
    filter: blur(20px);

    /*TRANSITION*/
    transition: filter 0.5s,opacity 0.5s;
}

h1 {
    /*POLICE*/
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
}
h1::first-letter {
    /*POLICE*/
    font-size: 5rem;
}

section {
    /*TAILLE*/
    width: 100vw;
    height: 85vh;

    /*POLICE*/
    font-size: 2rem;
    text-align: center;
    
    /*AFFICHAGE*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section > div{
    margin: 10px;
}
  