#font_index{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--couleur2);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.presentationArt{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}

.presentationArt div{
    width: 240px;
    height: 240px;
    background-color: #523c44;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.presentationArt div img{
    width: 200px;
    height: 200px;
    padding: 10px;
    transition: transform .1s;
}

.presentationArt div:hover{
    transform: scale(1.1);
    border: solid;
}

.titre{
    width: 90%;
    border: solid;
    border-radius: 20px;
    text-align: center;
    background-color: #523c44;
    color: white;
}

#Tprincipal{
    font-size: 3em;
}

.Tsecondaire{
    font-size: 2em;
}

#presentation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    align-items: center;
    gap: 30px;
}

.container{
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #523c44;
    padding: 10px 10px 20px 10px;
    box-shadow: 8px 6px 6px #3d2e34;
    color: white;
}

.droite{
    margin-left: 200px;
}

.gauche{
    margin-right: 200px;
}

.container p{
    padding-left: 20px;
}

#slogan{
    width: 80%;
    text-align: center;
}

@media (max-width: 850px) {
    .droite{
        margin-left: 0;
    }
    
    .gauche{
        margin-right: 0;
    }
}

@media (max-width: 560px) {
    .titre{
        width: 100%;
        border: none;
        border-radius: 0px;
        background-color: #523c44;
        color: white;
    }

    #presentation{
        width: 80%;
    }
}