/*feuille de style SASS, index p.1*/
@import url("https://fonts.googleapis.com/css2?family=Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;700&display=swap");
@-webkit-keyframes balance {
  0% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes balance {
  0% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
body {
  margin: 0;
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  background: url("../images/backindex.jpg") center no-repeat fixed;
  background-size: cover;
}

.container {
  width: 80%;
  margin: auto;
}

.text-center {
  text-align: center;
}

#logo {
  width: 33%;
  padding: 5% 0 0 5%;
}
#logo:hover {
  -webkit-animation: balance 1s infinite;
          animation: balance 1s infinite;
}

text {
  transform: rotate(-18deg);
}

svg {
  transform: translateY(-6%);
}

#slogan {
  font-family: "Vibes", cursive;
  font-weight: normal;
  font-size: 2em;
}

.btn-index {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 2em;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 1.5% 15%;
  opacity: 0.8;
  box-shadow: none;
  transition: 400ms;
}
.btn-index:hover {
  box-shadow: 0px 0px 10px #ffffff;
  transition: 400ms;
}

.index-link {
  display: block;
  text-decoration: none;
  color: #F8CF0B;
  font-size: 1.2em;
  padding-top: 4%;
}

#btnaccueil {
  padding-top: 15%;
}

@media (min-height: 810px) {
  #btnaccueil {
    padding-top: 30%;
  }
}/*# sourceMappingURL=style-index.css.map */