
/* ********** ACCUEIL ********** */
/* image accueil */
img.block {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

/* formulaire réservation */
.reservation {
    margin: 20px;
    position: absolute;
    top: 100px;
    left: 50px;
    border: 1px solid #100c18;
    background-color: #e2e2e2e5;
    width: 400px;
    height: fit-content;
    padding: 20px;
}
.reservation select,
.reservation input,
.reservation button {
     width: 90%;
     margin: 10px;
     padding: 5px;
}

/* affichage des voitures */
.trait {
    background-color: #e4e4e4;
    width: 70%;
    height: 1px;
    margin: 30px auto;
}
h3 {
    text-align: center;
    margin: 10px;
}
.separateur {
    background-color: #b1b1b1;
    width: 30%;
    height: 1px;
    margin: 40px auto;
}
.item {
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: fit-content;
    margin: 10px auto;
}
.gauche {
    width: 40%;
}
.droite {
    width: 60%;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: white;
}
.espace {
    margin: 20px 60px;
}


/* ********** CGV / Mentions légales ********** */
.document {
    margin: 40px auto;
    padding: 40px;
    background-color: #e4e4e4;
    border: #808080;
    width: 80%;
    height: fit-content;
}


/* ********** RESPONSIVE ********** */
@media screen and (max-width: 990px) {
    .reservation {
      margin: 10px auto;
      position: relative;
      top: 0;
      left: 0;
    }
    .item {
        flex-direction: column;
        justify-content: center;
    }
    .gauche, .droite {
        width: 100%;
    }
  }
