*,
*::before,
*::after {
  box-sizing: border-box;
}

form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
}

input{
    width: 50%;
    height: 40px;
}

.catalogue-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

h2{
    display: grid;
    place-items: center;
    font-size: var(--title-size);
    font-family: var(--title-font);
}


.salle-card-image{
    width: 35vw;
    height: auto;
    border-radius: 5px;   
}


.salle-card{

    border-top: 20px groove #01bdfd;
    border-right: 10px groove #f918a7;
    border-bottom: 10px groove #f918a7;
    border-left: 20px ridge #01bdfd;
    box-shadow: 10px 10px 3px 10px rgba(0,0,0,1);

    border-radius: 5px;
    background-color: var(--white-color);
    color: black;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    /* height: fit-content; */
    /* width: fit-content; */
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
    padding: 16px;
}

.salle-card a{
    text-decoration: none;
    background-color: var(--black-color);
    padding: 16px;
    border-radius: 5px;
    color: var(--white-color);
    transition: ease-in-out 0.2s;

}

.salle-card p {
    font-size: var(--text-size);
}

.salle-card h3 {
    font-size: 1.6rem;
}

.salle-card a:hover{
    transform: scale(1.1);
}

