body {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
      -45deg,
      rgb(95, 95, 95) 0,
      transparent 30px,
      black 30px,
      transparent 60px,
      rgb(95, 95, 95) 120px,
      transparent 290px
    );
    background-color: rgb(95, 95, 95);
}
th {
    text-transform: uppercase;
}
td {
    font-size: 20px;
}
.voiture {
    width: 50%;
   
}
h1 {
    color: rgb(255, 136, 0);
    text-transform: uppercase;
    font-weight: 600;
   
}
* {
    
    font-family: "Kanit", sans-serif; 
}

table {
    border: 2px black solid !important;

}
.icon {
    font-size: 1.5rem;
    color: white;
    margin: 5px;
}
.nav-item {
    margin: 20px;
    font-size: large;
}


@media (max-width: 470px) {

    th,
    td {
        font-size: 12px !important;
        /* Réduire la taille de la police pour les écrans extra-petits */
        overflow-wrap: break-word !important;
    }

}

@media (min-width : 1200px) {
h1 {
    color: rgb(255, 136, 0);
    font-size: 60px;
    text-transform: uppercase;
   
}
    .button {
        position: relative;
        width: 300px;
        height: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        border: 1px solid #ff6600;
        background-color: #ff6600;
    }

    .button,
    .button__icon,
    .button__text {
        transition: all 0.3s;
    }

    .button .button__text {
        transform: translateX(10px);
       
        font-weight: 600;
    }

    .button .button__icon {
        position: absolute;
        transform: translateX(237px);
        border-radius: 5px;
        height: 100%;
        width: 50px;
        background-color: #ff6600;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .button .fa-plus {
        width: 50px;
        stroke: #fff;
       
    }

    .button:hover {
        background: #ff6600;
    }

    .button:hover .button__text {
        color: transparent;
    }

    .button:hover .button__icon {
        width: 280px;
        transform: translateX(0);
    }

    .button:active .button__icon {
        background-color: #ff6600;
    }

    .button:active {
        border: 1px solid #ff6600;
    }



}

footer {
    background-color: black;
    font-family: 'Source Sans Pro', sans-serif !important;
}

.fa-plus {
    stroke: #fff ;
    margin-left: 15px;
}
.button {
    position: relative;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #ff6600;
    background-color: #ff6600;
}