main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 48px - 52px);
    height: 100%;
    
}

.container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.container2 {
    width: 100%;
    max-width: 980px;
    /*background-color: #06c;       Couleur de repaire*/  
    display: flex;
    flex-direction: row;
    margin: 10px 0 0 0;
    padding: 2.5% 0 0 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    
}

.title {
    font-family: 'SF Pro Display Medium';
    font-weight: 600;
    font-size: 1.2em;

}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 175px;
    width: 25%;
    max-width: 980px;
    box-shadow: 0 4px 6px rgb( 0, 0, 0, 0.3);
    border-radius: 12px;
    background-color: #fff;
    gap: 10px;
    font-family: 'SF Pro';
    padding: 1%;
    text-align: center;

    color: initial;
    text-decoration: none;
    transition: color .2s ease;
    transition: background-color .2s ease-in-out;
}

#ticket-icon {
    height: 25px;
    width: auto;
}

.button {
    width: fit-content;
    height: fit-content;
    padding: 5px 10px 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: .01em;
    line-height: 1.3333733333;
    font-family: 'SF Pro Display Light';
    border: 0px;
    background-color: #06c;
    transition: all 0.24s ease-in-out;
    color: #F2F2F7;
    z-index: 0;
    cursor: pointer;
}

.button:hover {
    background-color: #0076DF ;
}


.div-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px 0 5px 0;
}

.card:hover {
    animation: scaling .34s forwards;
    color: #06c;
    background-color: #fcfcfc;
} 


.card:not(:hover){
    animation: notscaling .34s forwards;
}

@keyframes scaling{
    from {
        scale: 1;
        box-shadow: 0 5px 5px rgb(0, 0, 0, 0.1);
    }

    to {
        scale: 1.02;
        box-shadow: 0 5px 20px rgb(0, 0, 0, 0.1);
    }
}

@keyframes notscaling{
    
    from {
        scale: 1.02;
        box-shadow: 0 5px 20px rgb(0, 0, 0, 0.1);
    }
    
    to{
        scale: 1;
        box-shadow: 0 5px 5px rgb(0, 0, 0, 0.1);
    }
}