:root {
  --primary-color: #da4a08;
  --secondary-color: seagreen;
}

body {
  width: 1000px;
  font-family: Arial, Times New Roman, Times, serif;
  font-size: 12px;
  margin: auto;
  background-color: var(--primary-color);   
  text-decoration: none;
}

#conteneur {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 1000px;
  margin-top: 20px;
  padding: 10px 30px 40px 30px;
}

a {
  text-decoration: none; /* Pour que le lien ne soit plus "souligné"... */
  color: var(--secondary-color);
}

h1 {
  font-size: 40px;
  color: var(--primary-color);
  text-decoration: none;
}

h2 {
  font-size: 20px;
  color: var(--secondary-color);
  text-decoration: none;
}

h3 {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.slider-container {
  max-width: 340px;
  position: relative;
  margin: auto;
  height: 500px;
  overflow: hidden;
}

.menu {
  position: absolute;
  left: 0;
  z-index: 11;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.menu label {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #d47264;
  border-radius: 50px;
  margin: 0 0.2em 1em;
}

.menu label:hover,
.menu label:focus {
  background: #1c87c9;
}

.slide-input {
  opacity: 0;
}

.slide-img {
  width: 100%;
  height: 450px;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 10;
  transition: left 0s 0.75s;
}

[id^="slide"]:checked + .slide-img {
  left: 0;
  z-index: 100;
  transition: left 0.65s ease-out;
}
.films {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	row-gap: -10px;
	
}
