/*------------------------------------------------------------*/
/* Burgbacher Kelian */
/* Finit le 13 janvier */
/* Cette page est dédiée à mettre du style aux pages 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;
}
.cabaneCarte{
    background: linear-gradient(rgba(0, 0, 0, 0), black);
    padding: 20px;
    margin-left: 20%; 
    margin-top: 0%;
    width: 20%
}
.cabaneCarte p{
    color: white;
}
.cabaneCarteImg{
    margin-left: 11%;
    width: 70%;
}
h1 {
    margin-top: 5%;
}
.cabaneDescMain{
    margin-top: 10%;
}
.cabaneDescSection{
    display: flex;
    margin-left: 20%;
}
.cabaneTexte{
    width: 40%;
}
@media (max-width: 768px) { /* média querys*/
    .cabaneCarteImg{
        display: none;
    }
    .cabaneCarte{
        height: 50%;
    }
}
p{
    color: white !important;
}
h2{
    color: white !important;
}
h1{
    color: white !important;
}
a{
    color: antiquewhite !important;
}