*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}
#titre{
    background-color: lightgray;
    padding: 1rem;
}
h3 { 
    margin: 1rem 1rem 1rem 0;
    font-size: 25px;
}
h2 { margin: 1rem;}
h1 {
    text-align: center;
    margin: 1rem;
}
p {
    font-size: 20px;
}
.container-initial{
    display: flex;
    justify-content: space-between;
}
#tableau-initial{
    margin-left: 2rem;
    width: 45vw;
}
#init-tab{
    font-weight: bold;
}
#tableau{
    width: 45vw;
    height: 45vh;
}
#checklist{
    margin-right: 1rem;
    width: 50%;
    min-width: 10rem;
    aspect-ratio: 16/9;
}
#checklist p{
    margin-bottom: 0.5rem;
}
.container{
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    background-color: antiquewhite;
    padding-bottom: 2rem;
}
#paragraphe{
    margin: 1rem;
    width: 45vw;
}
#tableau-webgl{
    /* margin-left: auto; */
    margin-right: 1rem;
    width: 50%;
    height: 45vh;
    min-width: 10rem;
    aspect-ratio: 16/9;
}
.footer{
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 100%;
}
#logo{
    width: 2rem;
    height: 2rem;
}
#github-link{
    margin-left: 1rem;
    text-decoration: none;
    color: black;
    font-weight: bolder;
    transition-property: color, scale;
    transition-duration: 0.5s;
}
#github-link:hover{
    color: antiquewhite;
    scale: 1.1;
}