body {
  background-image: url(images/sukuna_fond.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-family: 'Courier New', Courier, monospace;
}

h1 {
  text-align: center;
  color: black;
}

@keyframes rebond {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes soulever {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

#container {
  width: 350px;
  margin: auto;
  height: 450px;
  background-color: #211b224a;
  position: relative;
}

#corps {
  position: relative;
  z-index: 2;
  height: 67%;
  width: 50%;
  top: 16%;
  left: 25%;
  background-color: rgb(254, 195, 172);
  border-radius: 42%;
}

.elements {
  z-index: 3;
  position: absolute;
  object-fit: contain;
}

#hatonepiece {
  top: -27px;
  left: 20px;
  width: 120px;
  height: 120px;
  scale: 2.9;
  animation: rebond 2s infinite;
}

#narutoeyes {
  top: 110px;
  left: 40px;
  width: 90px;
  height: 90px;
  scale: 2;
  transition: transform 0.2s;
}

#narutoeyes:hover {
  transform: translateY(-20px);
}

#rightarmV2 {
  top: 90px;
  left: 75px;
  width: 90px;
  height: 90px;
  scale: 5;
}

#leftarmV2 {
  top: 90px;
  left: 10px;
  width: 90px;
  height: 90px;
  scale: 5;
}

#boucheV2 {
  top: 180px;
  left: 40px;
  width: 90px;
  height: 90px;
  scale: 2;
}

#noseV2 {
  top: 100px;
  left: 25px;
  width: 90px;
  height: 90px;
  scale: 2.5;
}