@charset "UTF-8";
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  color: #20a1f9;
}

/* background */
.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

/* END background */
.container {
  position: absolute; /* postulat de départ */
  top: 50%;
  left: 50%; /* à 50%/50% du parent référent */
  transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* logo */
  /* END logo */
  /* contact */
}
.container .logo {
  width: 300px;
}
.container .heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}
.container .contact {
  background-color: white;
  border-radius: 10px;
  padding: 5px 10px;
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
  margin-top: 10px;
}

/* footer */
footer {
  width: 100%;
  padding: 10px 15px;
  background-color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  font-size: 12px;
}

footer span {
  color: #B5B5C3;
}

footer a {
  color: #3F4254;
}

@media screen and (min-width: 768px) {
  .logo {
    width: 400px;
  }
  .contact {
    padding: 5px 50px;
    font-size: 20px;
  }
  footer {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .container .logo {
    width: 490px;
  }
  .container .contact {
    margin-top: 30px;
    padding: 5px 150px;
  }
  footer {
    padding: 13px 25px;
  }
}
@media screen and (min-width: 1440px) {
  .contact {
    padding: 5px 250px;
  }
}
@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}/*# sourceMappingURL=base.css.map */