* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}
body {
  /*background: linear-gradient(to bottom, #d94fa1, #e27647, #e0c07c, #6cd7e0, #da4e8b);*/
  background: url("img/fond.jpg") no-repeat center center fixed;
  background-size: 100% 100%;
  color: white;
  text-align: center;
}
a:hover img, a:hover {
  opacity: 0.75;
  transition: opacity 0.6s ease;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.logo {
  font-weight: 700;
  font-size: 24px;
}
.nav-toggle {
  display: block;
  cursor: pointer;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: white;
  transition: all 0.3s ease-in-out;
}
nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.3s ease-in-out;
  z-index: 9;
}
nav.open {
  right: 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  margin: 20px;
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.spacer {
  margin: 40px 0;
}
.poster {
  max-width: 25%;
  margin: 40px auto;
}
h1 {
  font-size: 70px;
  margin: 20px;
  font-family: rift, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  padding: 0;
}
.info {
  font-size: 28px;
  margin-bottom: 60px;
  font-family: rift, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.info span {
  font-family: rift, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.info .retrouvez {
  font-family: rift, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.liste-affiches {
  margin-top: 20px;
}
.liste-affiches a {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s;
  margin: 10px;
}
#homepage section, #app section {
  padding: 40px;
}
#app a {
  color: #ffffff;
}
#homepage section a, a.link, button.link {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s;
  margin: 20px 0;
  width: 50%;
}
.link-large {
  width: 100%!important;
  margin: 10px 0!important;
}
footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 15px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .electroson {
  font-size: 28px;
  text-align: left;
  font-family: rift, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  width: 100%;
}
.footer-logos img {
  height: 20px;
}
main {
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .logo-annecy {
    width: 50%;
  }
  h1 {
    font-size: 22px;
  }
  main {
    padding-bottom: 150px;
  }
  .poster {
    max-width: 90%;
  }
  .description {
    font-size: 14px;
  }
  nav a {
    font-size: 20px;
  }
  .liste-affiches a {
    padding: 8px 16px;
    margin: 5px 2px;
    width: 20%;
  }
  #homepage section {
    padding: 20px;
  }
  #homepage section a {
    width: 100%;
  }
  footer .electroson {
    font-size: 15px;
  }
  footer .electroson img {
    height: 20px;
  }
  .footer-logos {
    gap: 10px;
    margin-top: 5px;
  }
  .footer-logos img {
    height: 12px;
  }
}
@media (min-width: 601px) {
  main.affiche {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .poster {
    width: auto;
  }
  .content {
    width: auto;
    padding: 20px;
  }
  #homepage {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  section {
    width: 100%;
  }
}
