*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}


body{
    color: rgb(25, 99, 56);
    background-color: rgb(231, 252, 210);
    font-family: 'Lucida Grande', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

#header{
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

#grid{
    display: grid;
    grid-gap: 2%;
    grid-template-columns: repeat(3, 1fr) ;
    position: absolute ;
    max-width: 100% ;
    height: 80vh ;
    padding: 2%;
} 


#accueil{
    padding-top: 5%;
    grid-column-start: 2;
    grid-column-end: auto;
    grid-row-start: 2;
    grid-row-end: auto;
    text-align: center;
}


#texte2{
    line-height: 24px;
    grid-column-start: 2;
    grid-column-end: auto;
    grid-row-start: 1;
    grid-row-end: auto;
    max-height: 80vh;
    overflow: scroll;
} 

#texte2 p{
    padding-bottom: 10px;
}

#texte-rendu{
    grid-column-start: 2;
    grid-column-end: auto;
    grid-row-start: 1;
    grid-row-end: auto;
    max-height: 80vh;
    overflow: scroll;
}

#p1{
    padding-bottom: 15px;
}

#p2{
    padding-bottom: 15px;
}

#p3{
    padding-bottom: 5px;
}

#texte-rendu p{
    padding-bottom: 5px;
}
