@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
body {
  background: url(../img/background2.png), -webkit-linear-gradient(-90deg, #1e4c22, #101110) fixed;
  margin: 0;
  color: rgb(198, 255, 202);
  font-family: "Lexend", serif;
}

header {
  background-color: #101110;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  height: 80px;
}
header .logo {
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: #101110;
  padding: 10px;
}
header input#menu {
  padding: 0;
  margin: 0;
  text-shadow: 10px 2px 4px #317c35;
  text-align: center;
  font-size: 2rem;
  color: rgb(198, 255, 202);
  background-color: transparent;
  border: none;
  position: absolute;
  top: 48%;
  left: 30px;
  transform: translate(0, -48%);
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  header input#menu {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #101110;
    width: 100%;
    z-index: 0;
    position: relative;
    top: -100px;
    opacity: 0;
    transition: top 0.5s, opacity 0.2s;
  }
  header .navbar li {
    margin: 4px 0 8px 0;
    transition: 0.2s;
    cursor: pointer;
  }
  header .navbar li.invisible {
    display: none;
  }
  header .navbar li a {
    color: rgb(198, 255, 202);
    text-decoration: none;
  }
  header .navbar li a:hover {
    color: #317c35;
  }
}
@media screen and (min-width: 1000px) {
  header {
    height: 100px;
  }
  header .navbar {
    width: 90%;
    max-width: 800px;
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-between;
  }
  header .navbar li {
    flex: 1;
    text-align: center;
  }
  header .navbar li.invisible {
    opacity: 0;
  }
  header .navbar li a {
    text-decoration: none;
    color: rgb(198, 255, 202);
    transition: 0.2s;
    font-size: 1.4rem;
  }
  header .navbar li a:hover {
    color: #317c35;
  }
}
header .displayed {
  top: 90px;
  opacity: 100%;
  transition: top 0.5s, opacity 0.2s 0.3s;
}

main {
  margin-top: 130px;
}
@media screen and (max-width: 1000px) {
  main {
    margin-top: 80px;
  }
}
main section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 6rem auto;
  text-align: center;
  max-width: 1080px;
}
main section.banner {
  height: 70vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: bgdefil 12s ease-in-out infinite both;
  box-shadow: 0px 0px 20px 7px #101110;
  border-radius: 2rem;
}
main section.banner p {
  line-height: 1.6;
  font-size: 2rem;
}
main section p {
  font-size: 1.1rem;
}
@media screen and (max-width: 1000px) {
  main section.banner {
    border-radius: 0;
    box-shadow: none;
    height: 40vh;
  }
}
main section#dates {
  padding: 1rem 2rem;
  color: rgb(198, 255, 202);
  display: flex;
  flex-flow: row wrap;
}
main section#dates h2 {
  flex: 1;
  margin: 0;
  padding: 0;
  font-size: 4rem;
}
main section#dates hr {
  height: 100px;
}
main section#dates ul {
  flex: 1;
  list-style: none;
  text-decoration: none;
  margin: 1rem 0 0 0;
  padding: 0;
}
main section#dates ul li {
  margin: 5px 0;
  font-size: 1.4rem;
}
main section#dates ul li a {
  color: rgb(198, 255, 202);
  transition: 0.2s;
}
main section#dates ul li a:hover {
  color: #317c35;
}
@media screen and (max-width: 1000px) {
  main section#dates {
    flex-flow: column wrap;
  }
  main section#dates hr {
    height: auto;
    width: 90%;
  }
  main section#dates h2 {
    font-size: 2.5rem;
  }
  main section#dates ul {
    list-style: "→ ";
    width: 90%;
  }
  main section#dates ul li {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-align: left;
  }
}
main section#about {
  background-color: rgb(198, 255, 202);
  box-shadow: 0px 0px 20px 7px #101110;
  color: #101110;
  padding: 1.5rem 2rem;
  margin: 0 auto 6rem auto;
  border-radius: 2rem;
}
@media screen and (max-width: 1000px) {
  main section#about {
    max-width: 600px;
    margin: 4rem 2rem;
  }
}
main section#about h1 {
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
}
main section#about > div {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: space-around;
  width: 100%;
}
main section#about > div div {
  margin: 0 12px;
}
main section#about > div > div:first-of-type p {
  max-width: 400px;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  margin: 0 auto 10px auto;
}
main section#about > div > div:last-of-type img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

@keyframes bgdefil {
  0% {
    background-image: url(../img/photos/fenix.webp);
  }
  20% {
    background-image: url(../img/photos/veltar.webp);
  }
  40% {
    background-image: url(../img/photos/ulap.webp);
  }
  60% {
    background-image: url(../img/photos/matisse.webp);
  }
  80% {
    background-image: url(../img/photos/groupe.webp);
  }
  100% {
    background-image: url(../img/photos/fenix.webp);
  }
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #101110;
  color: rgb(198, 255, 202);
}
footer section#contact {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  align-items: baseline;
  flex-flow: row wrap;
}
footer section#contact div {
  flex: 33%;
}
footer section#contact a {
  color: rgb(198, 255, 202);
  transition: color 0.2s;
  font-size: 1rem;
}
footer section#contact a:hover {
  color: #317c35;
}
footer section#contact ul {
  list-style: none;
  text-decoration: none;
  padding: 0;
  height: 40px;
  max-width: 300px;
  margin: auto auto 25px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer section#contact ul li {
  width: 40px;
}
footer section#contact ul li a img {
  width: 25px;
  transition: width 0.2s;
  position: relative;
}
footer section#contact ul li a img:hover {
  width: 35px;
}
@media screen and (max-width: 1000px) {
  footer section#contact {
    align-items: center;
    flex-flow: column wrap;
    margin-bottom: 50px;
  }
  footer section#contact div:nth-child(-n+2) {
    margin-bottom: 10px;
  }
  footer section#contact ul {
    max-width: inherit;
    width: 250px;
    margin: 0px;
  }
  footer section#contact ul li {
    margin: 0;
  }
}
footer > p {
  margin-top: 20px;
  font-size: 0.6rem;
  user-select: none;
}

/*# sourceMappingURL=style.css.map */
