/*------------------------------------------------------------*/
/* Burgbacher Kelian */
/* Finit le 13 janvier */
/* Cette page est dédiée à mettre du style à la page de présentation des cabanes */
/*------------------------------------------------------------*/
body{
    margin: 0;
    background: 
        linear-gradient(to bottom, rgba(4, 43, 151, 0.9) 30%, #5c566e 100%), /* gradient */ 
        url("../images/cabane.png") no-repeat center top;   /* image centrée */;
    background-size: cover; /* couvrir tout l'écran */
    background-attachment: fixed; /* faire que les montagnes soient toujours là */
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}
.carteCabane{
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(0, 0, 0));
    padding: 20px;
    width: 10%;
    justify-content: center;
    align-items: center;
}
#typesCabane{
    margin-left: 20%;
    margin-top: 50%;
    margin-right: 20%;
    margin-bottom: 20%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.carteCabane div{
    background-color: transparent;
}
p{
    color: white !important;
}
h1{
    color: white !important;
}
a{
    color: antiquewhite !important;
}
@media (max-width: 768px) {
    #typesCabane {
        margin: 0 auto;        /* centrage horizontal */
        margin-top: auto;     
        margin-bottom: 20px;    
        flex-direction: column; 
        align-items: center;    
        justify-content: flex-end; 
        gap: 8px;
    }
    .carteCabane{
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
