@font-face {
  font-family: ack;
  src: url(./assets/Acknowledgement/Acknowledgement.otf) format("opentype");
}
html, body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(80, 139, 107, 0.3);
}

nav {
  position: relative;
  height: 5%;
  background-color: rgb(44, 110, 94);
}

button {
  position: absolute;
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
}
button > #design {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 20px;
}
button > #design::after, button > #design::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 25px;
  height: 5px;
  transform: translateX(-50%);
  background-color: rgb(23, 59, 50);
  border-radius: 2px;
  transition: ease-in-out;
  transition-duration: 300ms;
  transition-property: transform, background-color;
  transform-origin: 25%;
}
button > #design:hover::after, button > #design:hover::before {
  transform: rotate(180deg);
  background-color: rgb(255, 255, 255);
}
button > #design::before {
  top: 15%;
}
button > #design::after {
  bottom: 15%;
}

h1 {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  color: rgb(23, 59, 50);
}

.bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 50%;
  z-index: -2;
  background: url(./assets/header_bg.jpeg);
}

.carrousel {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20%;
  width: 40%;
}

.card {
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 100;
  height: 200px;
  width: 200px;
  background-color: rgba(167, 240, 224, 0.315);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 20%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  text-decoration: none;
}

#frog {
  color: rgba(11, 78, 75, 0.6);
}

#leaf {
  color: rgba(11, 78, 75, 0.6);
}

#moutain {
  color: rgba(11, 78, 75, 0.6);
}

.caption {
  font-size: 20px;
  pointer-events: none;
}

.slidingCube {
  position: relative;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  background-color: rgb(121, 7, 7);
  width: 50px;
  height: 50px;
  z-index: -1;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  0% {
    left: 32%;
  }
  50% {
    left: 68%;
  }
  100% {
    left: 32%;
  }
}/*# sourceMappingURL=style.css.map */