body {
  min-height: 100vh;
}
main {
  display: flex;
  justify-content: center;
  width: 95%;
  margin: auto;
  padding-top: 20px;
  height: 100%;
}

.actualite-link {
  display: block;
  text-decoration: none;
  width: 40%;
  text-align: center;
}

.actualite-image {
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.6);
  flex: 3;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .actualite-link {
    width: 80%; /* On smaller screens, make the image blocks wider */
  }
}

@media (max-width: 480px) {
  .actualite-link {
    width: 100%; /* Full width for very small screens */
  }
}
