* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0 auto;
  padding: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #000000;
  /*background: linear-gradient(45deg, #05274b, #0051a8, #7353ff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: relative;*/
}

.container {
  width: 100%;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.container h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.container h2 {
  font-size: 16px;
  margin-bottom: 50px;
  font-weight: normal;
}

.container h3 {
  font-size: 30px;
  margin-bottom: 50px;
}

.container p {
  font-size: 15px;
  margin-bottom: 20px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/************************************************
	LIEN et BOUTON
************************************************/
a {
  margin: 5px;
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  /*text-transform: uppercase;*/
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 0 3.5px #34c6ff;
}

a:visited {
  color: #ffffff;
}

a:hover {
  background: #34c6ff;
  border-radius: 3px;
  box-shadow: 0 0 10px #34c6ff, 0 0 30px #34c6ff, 0 0 70px #34c6ff;
  transition-delay: 25ms;
}

a span {
  position: absolute;
  display: block;
}

/*.animated-link {
  display: inline-block;
  background: #ffffff;
  border-radius: 3px;
  text-decoration: none;
}

.animated-link span {
  display: inline-block;
  background: #00e1ff;
  color: #defbff;
  border: 1px solid #00e1ff;
  padding: 18px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition:
  transform 0.15s ease-out,
  color 0.15s ease-out,
  background-color 0.15s ease-out;
}*/

/**Animate plus**/
.backwrap {
  /* Old browsers */
  /*background-image: url("Logo.png");*/
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/*Shapes & Animation*/
.back-shapes {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.back-shapes img {
  opacity: 0.2;
  position: absolute;
  width: 1.5%;
}

.floating {
  position: absolute;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.floating.circle {
  display: inline-block;
  width: 39px;
  height: 39px;
  background-image: url("icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

.floating.square {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

.floating.triangle {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

.floating.cross {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}

@keyframes floating {
  0% {
    transform: translateY(0%) rotate(-55deg);
  }

  50% {
    transform: translateY(300%) rotate(55deg);
  }

  100% {
    transform: translateY(0%) rotate(-55deg);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(300%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}