body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: justify;
  background-color: #111;
  color: white;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

h2 {
  margin-top: 0;
}

form label {
  display: block;
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

form button {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #666;
}

footer {
  background-image: url("pictures/footer.png");
  aspect-ratio:1800/420;
    width: 100%;
    overflow: hidden; 
    box-sizing: border-box;
    background-size: cover;
}

@font-face {
  font-family: 'TitleFont';
  src: url('Roman SD.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.image-links {
  display: flex;
  gap: 20px;            /* espace entre les images */
  align-items: center;
}

.image-link {
    width:50%;
  display: inline-block;
}

.image-link img {
  width: 100%;         /* ajuste selon ton besoin */
  height: auto;
  border-radius: 8px;
  transition: transform .3s, box-shadow .3s;
}

.image-link:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

@media (max-width: 600px) {
  .image-links {
    flex-direction: column;
  }
}

