@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: Calibri;
  text-align: justify;
  text-align-last: center;
}

body {
  width: 100vw;
  height: 90vh;
  background-color: black;
  overflow: hidden;
}

nav {
  width: 100%;
  height: 8vh;
  background-color: white;
}

nav section {
  width: 100%;
  height: 50%;
  font-family: "Dancing Script";
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: stretch;
  list-style-type: none;
  font-size: 14px;
}

nav ul li {
  background-color: white;
  transition: 0.3s ease-in-out;
  height: 100%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

nav ul li:hover {
  background-color: #ddd;
}

main {
  background-image: url("../img/bg.png");
  background-size: min(100vw, 92vh);
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100vw;
  height: 92vh;
}

main .card-container {
  margin: 10vh auto 0 auto;
  width: clamp(200px, 70vw, 49.3181818182vh);
  aspect-ratio: 31/44;
  max-height: 70vh;
}

main .card-container .card {
  position: relative;
  backface-visibility: hidden;
  background-color: white;
  border-radius: 15px;
  height: calc(100% - 30px);
  padding: 15px;
  transform-style: preserve-3d;
  width: calc(100% - 30px);
}

main .card-container .card .content {
  height: fit-content;
  width: 100%;
}

main .card-container .card .content a {
  color: black;
  text-decoration: none;
}

main .card-container .card .content img.social {
  width: 20px;
}

main .card-container .card .content img#avis-img {
  width: 100%;
  height: 90%;
}

main .card-container .card .content img#gallery-img {
  width: 80%;
  height: 70%;
}

main .card-container .card .content button {
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

main .card-container .card .content button:hover {
  background-color: #bbb;
}

main .card-container .card .sign {
  position: absolute;
}

main .card-container .card .sign-bottom {
  bottom: 15px;
  right: 15px;
  transform: rotate(180deg);
}

main .card-container .card .sign-top {
  top: 15px;
  left: 15px;
}

#hidden {
  display: none;
}

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

a {
  text-decoration: none;
  color: black;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#avis-container {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

section#avis-container img {
  width: clamp(200px, 30%, 600px);
  margin: 20px;
}