.salle{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 200px;
}


.salle-container{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;

}

.bleu{
    color: var(--darkblue-color);
}

.rose{
    color: var(--darkpink-color);
}

.salle-container h2{
    text-align: center;
    font-size: var(--title-size);
    font-family: var(--title-font);
}


.img-salle{
    width: 30vw;
    height: auto;
    float: left;
    border-radius: 5px;
    margin: 32px;
}

.text-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    height: fit-content;
    margin: 16px;
}

.text-container p{
    font-size: var(--text-size);
}
.text-container a{
    font-size: var(--text-size);
    text-decoration: none;
    background-color: var(--black-color);
    padding: 16px;
    border-radius: 5px;
    color: var(--white-color);
    transition: ease-in-out 0.2s;
    width: fit-content;
    
}
.text-container a:hover{
    transform: scale(1.1);

}
.text-container span{
    font-weight: bold;
    font-size: 1.6rem;
    color: var(--lightblue-color);
}

