/* Définition des styles de base pour la page */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2em;
    background-color: #333;
    color: #fff;
    padding: 1em;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    font-size: 1.2em;
}

/* Styles pour les appareils mobiles */
@media only screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
}

/* Styles pour les boutons */
button {
	display: block;
	margin: 0 auto;
	padding: 10px 20px;
	font-size: 1.2em;
	border: 2px solid #8BC34A; /* Ajout d'une bordure solide de 2px avec la couleur de fond verte */
	border-radius: 5px;
	background-color: #8BC34A;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	width: 200px;
	box-sizing: border-box;
}


table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}







/* Styles pour les photos */
.photo {
  display: inline-block;
  text-align: center;
  margin: 10px;
  padding: 10px; /* Augmentation de l'espace entre la bordure et la photo */
  background-color: #fff;
  box-shadow: 2px 2px 5px #ccc;
  border: 2px solid black; /* Ajout de la bordure noire de 2px */
}

.photo a {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* Styles pour le bouton "Charger plus" */
button {
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Styles pour la page entière */
body {
  max-width: 1200px;
  margin: 0 auto;
}

.vitara-image {
  max-width: 300px;
  height: auto;
}
