html {
  scroll-behavior: smooth;
}

.visible {
  visibility: visible;
}

.hidden {
  visibility: hidden;
}

.input {
  width: 60%;
}

.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#contenu {
  width: 60%;
}

.message {
  background-color: darkred;
  color: white;
  display: block;
  text-align: center;
}

.titre {
  color: black;
}

#slideshow-container {
  display: flex;
  justify-content: space-evenly;
}

.slidelist {
  display: flex;
  justify-content: center;
}

.slide {
  display: none;
  margin-left: auto;
  margin-right: auto;
}

.prev,
.next {
  cursor: pointer;
  font-weight: bold;
  font-size: 2.5em;
  transition: 0.6s ease;
  height: inherit;
  margin-top: auto;
  margin-bottom: auto;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

#controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.dot {
  cursor: pointer;
  margin: 2px;
}

#logo {
  max-width: 40%;
}

#csrf_token {
  display: none;
}

.footer {
  color: #777;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.footer a {
  text-decoration: none;
  color: #333;
}

.footer a:hover {
  text-decoration: none;
  color: #333;
}

.footer a:visited {
  text-decoration: none;
  color: #333;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
