.move {
  animation: position 0.2s infinite;
}

.move2 {
  animation: position2 0.4s infinite;
}

.move3 {
  animation: position3 0.3s infinite;
}

.move4 {
  animation: position4 0.6s infinite;
}

.move5 {
  animation: position5 0.5s infinite;
}

.move6 {
  animation: position6 1s infinite;
}

@keyframes position {
  from {
    position: absolute;
    top: 10px;
    left: 10px;
    }
  to {
    position: absolute;
    top: 79px;
    right: 23px;
    }
}

@keyframes position2 {
  from {
    position: absolute;
    top: 10px;
    left: 10px;
    }
  to {
    position: absolute;
    bottom: 10px;
    left: 50px;
    }
}

.grand-image {
  width: 600px;
  height: 600px;
}

@keyframes position3 {
  from {
    position: absolute;
    bottom: 30px;
    left: 40px;
    }
  to {
    position: absolute;
    bottom: 80px;
    right: 90px;
    }
}

@keyframes position4 {
  from {
    position: absolute;
    left: 10px;
    top: 10px;
    }
  to {
    position: absolute;
    right: 80px;
    top: 100px;
    }
}

@keyframes position5 {
  from {
    position: absolute;
    bottom: 10px;
    left: 10px;
    }
  to {
    position: absolute;
    bottom: 280px;
    left: 280px;
    }
}

@keyframes position6 {
  from {
    position: absolute;
    bottom: 50px;
    left: 10px;
    }
  to {
    position: absolute;
    top: 280px;
    right: 260px;
    }
}

@keyframes clignote {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
  }
}

h2 {
  font-style: bold;
  font-size: 500%;
  position: absolute;
  top: 5px;
  left: 1040px;
  animation: clignote 0.0001s infinite;
}
