body {
  width: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgb(31,150,190) 35%, rgb(9,116,187) 61%,  rgb(9,116,187) 80%);
  margin:0px;
}
/* Style par défaut pour les paragraphes */
p {
  font-family: 'Titre', sans-serif;
  font-size: 4em;
  text-transform: uppercase; /* Met en majuscules */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: rgb(255, 189, 76); /* Couleur rouge pour le texte */
  -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */
}

/* Style pour les écrans avec une largeur maximale de 576px */
@media (max-width: 576px) {
  p,h1 {
    font-size: 2.6em;
  }
  .welcome,.dbs {
    width:75%;
  }
}


#background {
 
  width: 100%;
  height: 100vh;

}

#ciel {
  background: linear-gradient(to top, rgb(41, 98, 184), #5C243B);
  font-family: 'Titre', sans-serif;

  text-transform: uppercase; /* Met en majuscules */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: #ffffff; /* Couleur rouge pour le texte */
  -webkit-text-stroke: 4px black; /* Bordure de 2 pixels de large en noir */

}
.sky {
  position: relative;
}
.dbs {
  position: absolute;
  z-index: 1;
  bottom:10vh;
 
}

@font-face {
  font-family: 'Titre';
  src: url('../Saiyan-Sans.ttf');
  font-display: swap;
  }
  #car3 {
    background-image: url(../img/karin.webp);
    background-size:100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-position: top;
    font-family: 'Titre', sans-serif;
 
    text-transform: uppercase; /* Met en majuscules */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
    color: #ffffff; /* Couleur rouge pour le texte */
    -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */
  
  }

  @media (max-width: 768px) {
  
  
  
    }


.bienvenue {

  background: radial-gradient(circle at center, #FFD700 10%, transparent 70%);
}
.head {
   background: linear-gradient(to top,rgb(41,98,185), rgb(40,96,184));
  font-family: 'Titre', sans-serif;
  font-size: 40px;
  text-transform: uppercase; /* Met en majuscules */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: #ff9d00; /* Couleur rouge pour le texte */
  -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */

 
}
.palais {
 background-image: url(../img/kami.webp);
 background-size: cover;
 height: 100vh;
 
}

/* CSS pour les éléments de la liste en mode responsive */
@media (max-width: 768px) {
  .navbar-nav .nav-item {
    width: 100%; /* Définir une largeur de 100% en mode responsive */
    text-align: center; /* Centrer le texte dans l'élément de la liste */
    margin: 5px 0; /* Ajouter un espacement vertical entre les éléments */
  }
}



  .navbar-nav {
    width:100%;
  }


  .navbar-nav .nav-link {
    font-size: 1rem; /* Use a relative font size */
    padding: 0.5rem 1rem; /* Adjust padding as needed */
  }
  
  .nav-link:hover {
    background-color: #ff7b00;
    border-radius: 20px;
    transform: scale(1.1);
    -webkit-box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgba(255,255,255,0); 
    box-shadow: 5px 5px 5px 0px #000000, inset 4px 4px 15px 0px #000000, 5px 5px 15px 5px rgba(255,255,255,0);
  }


.carousel-item {
 
  background-size: cover;
  background-position: center;
  text-align: center;
  
}

.carousel-inner {

}

.carousel-control-prev,
.carousel-control-next {
  
  background-color: rgba(0, 0, 0, 0);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.carousel-item img {
  
}



  .carousel-control-prev img,
  .carousel-control-next img {
    animation: moveUpAndDown 1s infinite;
  }

  @keyframes moveUpAndDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0);
    }
  }

.carousel-indicators>li{
  background-image : url(../img/boule1.webp);
  background-size: cover;
  width : 50px;
  height : 50px;
  background-color: rgba(0, 0, 255, 0);
  border: #000000 5px solid;
  border-radius: 50px;
}

.carousel-indicators>li:nth-child(2){
  background-image : url(../img/boule2.webp);
  background-size: cover;
  width : 50px;
  height : 50px;
}

.carousel-indicators>li:nth-child(3){
  background-image : url(../img/boule3.webp);
  background-size: cover;
  width : 50px;
  height : 50px;
}

.climb {
  position: relative;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
  

}

.kidku{
  position: absolute;
  z-index: 2;
}
.nuage {
 
  animation: cloudMove 20s linear infinite;
}

@keyframes cloudMove {
  0% {
    transform: translateX(100%); /* Départ depuis la droite */
  }
  100% {
    transform: translateX(-100%); /* Arrivée à la gauche */
  }
}



 h1 {
  font-family: 'Titre', sans-serif;
 
  text-transform: uppercase; /* Met en majuscules */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: rgb(255, 189, 76); /* Couleur rouge pour le texte */
  -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */

 }

.sortie {

  color: rgb(255, 189, 76); /* Couleur rouge pour le texte */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */

  -webkit-text-stroke: 3px black; /* Bordure de 2 pixels de large en noir */

}
@media screen and (max-width: 768px) {
  .palais {
    height:60vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
   
  }
  #car {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image:url(../img/dbzphone6.jpg);
 
  }

  #car2 {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image:url(../img/dbzphone8.jpg);
 
  }
  #car4 {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image:url(../img/dbzphone7.jpg);
  }
  .promo {

width:75%;
  }
  .contactbtn {
    width:100%;
  }
}
@media screen and (min-width: 768px) {

  #car {
    background-image: url(../img/moon.webp);
    background-size: 100% 100%;
  }
  #car2 {
    background-image: url(../img/goku5.webp);
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    background-position: top;
  }

  #car4 {
    background-image: url(../img/kid.webp);
background-repeat: no-repeat;
background-size: 100% 100%;
  }
  .promo {

    width:50%;
      }

  .contactbtn {
    width:25%;
  }
}
#car {


-webkit-box-shadow: 0px 0px 50px 50px #000000; 
box-shadow: 0px 0px 50px 50px #000000;


}
#car2 {
  font-family: 'Titre', sans-serif;


  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: #ffffff; /* Couleur rouge pour le texte */
  -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */
  -webkit-box-shadow: 0px 0px 50px 50px #000000; 
  box-shadow: 0px 0px 50px 50px #000000;



}

#car4 {
  font-family: 'Titre', sans-serif;
  
  -webkit-box-shadow: 0px 0px 50px 50px #000000; 
box-shadow: 0px 0px 50px 50px #000000; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre noire */
  color: #ffffff; /* Couleur rouge pour le texte */
  -webkit-text-stroke: 2px black; /* Bordure de 2 pixels de large en noir */

}
.tao {
  height:20vh
}

#nav {
  -webkit-box-shadow: 0px 10px 22px 12px #000000; 
box-shadow: 0px 10px 22px 12px #000000;

}
.navbar {
  width:100%;
  position: fixed;
}

#compte:hover {

  transform: scale(1.2);
  transition: transform 0.2s ease;
  
}

#compte:active {
  transform:scale(1);
  transition: transform 0.2s ease;
}

#gg {
  -webkit-box-shadow: 0px -8px 37px 17px #000000; 
box-shadow: 0px -8px 37px 17px #000000;
  position: relative;
  z-index: 2;

}

@keyframes move-right {
  0% {
    left: 0%;
  }
  100% {
    left: 80%;
  }
}

@keyframes move-up-down {
  0% {
    transform: translateY(-50%) translateY(-5px);
  }
  50% {
    transform: translateY(-50%) translateY(5px);
  }
  100% {
    transform: translateY(-50%) translateY(-5px);
  }
}

.release {
  

  
}

.release>a>img {
  border-radius: 20px;

  border: 5px solid rgb(0, 0, 0);
}

.release>a>img:hover {
  transform: scale(1.05);
  transform: translateY(-1em);
  -webkit-box-shadow: 0px 13px 26px -8px #FFFFFF; 
box-shadow: 0px 13px 26px -8px #FFFFFF;
cursor:pointer;
}
.release>img {
  border-radius: 20px;

  border: 4px solid rgb(255, 162, 0);
}

.release>img:hover {
  transform: scale(1.05);
  transform: translateY(-1em);
  -webkit-box-shadow: 0px 13px 26px -8px #FFFFFF; 
box-shadow: 0px 13px 26px -8px #FFFFFF;
cursor:pointer;
}

.release:active {

  transform: scale(0.95);
}



.grow-effect {
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.grow-effect.show {
  transform: scale(1);
  height: 100%;
}

.fa-li {
  color:#ff7b00;
}


.navbar-toggler {
  color:white;
  background-color: #c96b00;
  border:5px solid white;

}

@media (max-width: 768px) {
  .imgtitre {
  width:100%;
  }


  .logo {
    position: absolute;
    left:5%;
    top:0;
  }
  }


  .imgtitre2 {
    width:30%;

  }

  html,
  body {
    overflow-x: hidden;
  }
  .foot {
 position: absolute;
 top:10%;
 z-index: 99;
  }
  .kam {
  position: relative;
    height:70vh;
 
 
  }
  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #0974bb;
  }
  .background .sea {
    position: absolute;
    width: 100%;
    height: 40%;
    top: 75%;
    left: 0;
    background: #0862b3;
  }
  .background .clouds {
    position: absolute;
    left: -10%;
    bottom: 25%;
    width: 150%;
    height: 70px;
    background: #c8faf8;
    animation-name: animation-cloud;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  .background .clouds .cloud {
    position: absolute;
    background: #c8faf8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 0;
    -webkit-transform: translate(-150px, -50%);
    transform: translate(-150px, -50%);
  }
  .background .clouds .cloud:nth-child(1) {
    left: calc(1px * 150);
  }
  .background .clouds .cloud:nth-child(2) {
    left: calc(2px * 150);
  }
  .background .clouds .cloud:nth-child(3) {
    left: calc(3px * 150);
  }
  .background .clouds .cloud:nth-child(4) {
    left: calc(4px * 150);
  }
  .background .clouds .cloud:nth-child(5) {
    left: calc(5px * 150);
  }
  .background .clouds .cloud:nth-child(6) {
    left: calc(6px * 150);
  }
  .background .clouds .cloud:nth-child(7) {
    left: calc(7px * 150);
  }
  .background .clouds .cloud:nth-child(8) {
    left: calc(8px * 150);
  }
  .background .clouds .cloud:nth-child(9) {
    left: calc(9px * 150);
  }
  .background .clouds .cloud:nth-child(10) {
    left: calc(10px * 150);
  }
  .background .clouds .cloud:nth-child(11) {
    left: calc(11px * 150);
  }
  .background .clouds .cloud:nth-child(12) {
    left: calc(12px * 150);
  }
  .background .clouds .cloud:nth-child(13) {
    left: calc(13px * 150);
  }
  .background .clouds .cloud:nth-child(14) {
    left: calc(14px * 150);
  }
  .background .clouds .cloud:nth-child(15) {
    left: calc(15px * 150);
  }
  .background .clouds .cloud:nth-child(16) {
    left: calc(16px * 150);
  }
  .background .clouds .cloud:before, .background .clouds .cloud:after {
    content: "";
    position: absolute;
    background: #c8faf8;
    top: 50%;
    left: 0;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .background .clouds .cloud:before {
    width: 70px;
    height: 70px;
    left: -50px;
  }
  .background .clouds .cloud:after {
    width: 90px;
    height: 90px;
    left: 40px;
  }
  @keyframes animation-cloud {
    from {
      transform: translateX(0px);
    }
    to {
      transform: translateX(150px);
    }
  }
  
  .magic-cloud {
    position: absolute;
    width: 150px;
    height: 100px;
    top: 5%;
    left: -200px;
    animation-delay: 2s;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: animation-magic-cloud;
  }
  .magic-cloud:before {
    content: "";
    position: absolute;
    width: 250px;
    right: 80%;
    top: 60%;
    height: 15px;
    background: #fef679;
    z-index: 1;
    box-shadow: 0px 5px 0 0 #dbb300, 0px 10px 0 0 #b38300;
  }
  .magic-cloud:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 30px;
    top: 60%;
    left: -147%;
    z-index: 2;
    background: #0974bb;
    background: -moz-linear-gradient(left, #0974bb 0%, rgba(231, 56, 39, 0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #0974bb), color-stop(100%, rgba(231, 56, 39, 0)));
    background: -webkit-linear-gradient(left, #0974bb 0%, rgba(231, 56, 39, 0) 100%);
    background: -o-linear-gradient(left, #0974bb 0%, rgba(231, 56, 39, 0) 100%);
    background: -ms-linear-gradient(left, #0974bb 0%, rgba(231, 56, 39, 0) 100%);
    background: linear-gradient(to right, #0974bb 0%, rgba(231, 56, 39, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0974bb", endColorstr="#e73827", GradientType=1 );
  }
  .magic-cloud > * {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-name: animation-magic-clouds;
  }
  @keyframes animation-magic-clouds {
    from {
      transform: translateY(-7px);
    }
    to {
      transform: translateY(7px);
    }
  }
  .magic-cloud .cloud-1 {
    width: 30px;
    height: 30px;
    background: #fef679;
    box-shadow: 2px 5px 0 0 #dbb300, 4px 10px 0 0 #b38300;
    left: 0;
    bottom: 15px;
  }
  .magic-cloud .cloud-1:before {
    content: "";
    position: absolute;
    background: #fef679;
    width: 100%;
    height: 100%;
    bottom: 70%;
    left: 50%;
    border-radius: 50%;
    box-shadow: 0px 5px 0 0 #dbb300;
  }
  .magic-cloud .cloud-2 {
    width: 40px;
    height: 40px;
    background: #fef679;
    box-shadow: 0px 10px 0 0 #dbb300, 2px 15px 0 0 #b38300;
    bottom: 10px;
    left: 20px;
    z-index: 4;
  }
  .magic-cloud .cloud-2:before {
    content: "";
    position: absolute;
    background: #fef679;
    width: 100%;
    height: 100%;
    bottom: 70%;
    left: 30%;
    border-radius: 50%;
    box-shadow: 1px 3px 0 0 #dbb300;
  }
  .magic-cloud .cloud-3 {
    width: 50px;
    height: 50px;
    background: #fef679;
    box-shadow: 0px 10px 0 0 #dbb300, 1px 15px 0 0 #b38300;
    bottom: 0;
    left: 50px;
  }
  .magic-cloud .cloud-3:before {
    content: "";
    position: absolute;
    background: #fef679;
    width: 100%;
    height: 100%;
    bottom: 70%;
    left: 10%;
    border-radius: 50%;
  }
  .magic-cloud .cloud-4 {
    width: 40px;
    height: 40px;
    background: #fef679;
    box-shadow: -1px 8px 0 0 #dbb300, 0px 13px 0 0 #b38300;
    bottom: 5px;
    left: 90px;
    z-index: 4;
  }
  .magic-cloud .cloud-4:before {
    content: "";
    position: absolute;
    background: #fef679;
    width: 100%;
    height: 100%;
    bottom: 70%;
    left: -20%;
    border-radius: 50%;
    box-shadow: 3px 3px 0 0 #dbb300;
  }
  .magic-cloud .cloud-5 {
    width: 30px;
    height: 30px;
    background: #fef679;
    box-shadow: -1px 8px 0 0 #dbb300, -1px 13px 0 0 #b38300;
    bottom: 8px;
    left: 120px;
  }
  .magic-cloud .cloud-5:before {
    content: "";
    position: absolute;
    background: #fef679;
    width: 100%;
    height: 100%;
    bottom: 70%;
    left: -50%;
    border-radius: 50%;
    box-shadow: 0px 5px 0 0 #dbb300;
  }
  @keyframes animation-magic-cloud {
    from {
      left: -200px;
    }
    to {
      left: calc(100% + 400px);
    }
  }
  
  .container-island {
    position: absolute;
    width: 1000px;
    height: 150px;
    left: 50%;
    top: calc(75% - 50px);
    z-index: 9;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .container-island .island {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #daefb1;
    left: 50%;
    top: 0;
    z-index: 2;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50%/70% 70% 30% 30%;
    z-index: 5;
  }
  .container-island .island .green {
    position: absolute;
    background: #6eba74;
    width: 95%;
    height: 100%;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50%/70% 70% 30% 30%;
  }
  .container-island .waves {
    position: absolute;
    z-index: 3;
    width: calc(100% + 20px);
    height: 70%;
    bottom: -8px;
    left: -10px;
  }
  .container-island .waves .wave {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #1fa2b4;
    border-radius: 50%;
    animation-name: animation-wave;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform: scale(0.8);
  }
  .container-island .waves .wave.wave-2 {
    animation-delay: 1s;
  }
  .container-island .waves .wave.wave-3 {
    animation-delay: 2s;
  }
  @keyframes animation-wave {
    from {
      opacity: 1;
      transform: scale(0.8);
    }
    to {
      opacity: 0;
      transform: scale(1.2);
    }
  }
  .container-island .house {
    position: absolute;
    width: 200px;
    height: 120px;
    z-index: 6;
    left: 50%;
    top: -70px;
    transform-style: preserve-3d;
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
  .container-island .house:before, .container-island .house:after {
    content: "";
    box-sizing: border-box;
    height: 15px;
    top: 100%;
    background: #ffffff;
    position: absolute;
  }
  .container-island .house:before {
    width: 100%;
    right: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
  }
  .container-island .house:after {
    width: 40%;
    right: 100%;
  }
  .container-island .house .face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ccd0e4;
    left: 0;
    top: 0;
  }
  .container-island .house .face:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 100px solid #ccd0e4;
  }
  .container-island .house .face .roof-border {
    box-sizing: border-box;
    position: absolute;
    width: 155px;
    height: 155px;
    bottom: calc(100% - 5px);
    right: 0;
    z-index: 2;
    transform-origin: 100% 100%;
    transform: translateX(10px) rotate(-45deg);
    border-top: 5px solid #e04c53;
    border-right: 5px solid #e04c53;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .container-island .house .face .window {
    position: absolute;
    bottom: 17%;
    width: 50%;
    left: 10%;
    height: calc(45% + 20px);
    background: #ffffff;
    z-index: 5;
  }
  .container-island .house .face .window:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    border-left: 5px solid rgba(0, 0, 0, 0.3);
    border-bottom: 5px solid rgba(0, 0, 0, 0.3);
  }
  .container-island .house .face .window:before {
    content: "";
    position: absolute;
    height: calc(100% - 10px);
    width: 40%;
    background: #21527d;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .container-island .house .face .window .shutter-left,
  .container-island .house .face .window .shutter-right {
    box-sizing: border-box;
    position: absolute;
    width: calc(30% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    border: 1px solid #8a8b78;
    overflow: hidden;
  }
  .container-island .house .face .window .shutter-left:before,
  .container-island .house .face .window .shutter-right:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    box-shadow: 0px 6px 0px 0px #8a8b78, 0px 12px 0px 0px #8a8b78, 0px 18px 0px 0px #8a8b78, 0px 24px 0px 0px #8a8b78, 0px 30px 0px 0px #8a8b78, 0px 36px 0px 0px #8a8b78, 0px 42px 0px 0px #8a8b78, 0px 48px 0px 0px #8a8b78, 0px 55px 0px 0px #8a8b78;
  }
  .container-island .house .face .window .shutter-left {
    left: 5px;
  }
  .container-island .house .face .window .shutter-right {
    right: 5px;
  }
  .container-island .house .face .window .flower {
    position: absolute;
    bottom: 5px;
    left: calc(30% + 8px);
  }
  .container-island .house .face .window .flower:after {
    content: "";
    position: relative;
    z-index: 5;
    width: 10px;
    display: block;
    border-top: 10px solid #f8fb9b;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
  }
  .container-island .house .face .window .flower:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #51c661;
    border-radius: 50%;
    z-index: 3;
    bottom: calc(100% - 2px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .container-island .house .face .door {
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 40%;
    height: 100%;
    z-index: 6;
  }
  .container-island .house .face .door:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    transform-origin: 100% 0;
    transform: skewX(-25deg);
    z-index: 3;
  }
  .container-island .house .face .door .door-roof {
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0;
    left: 0;
    -webkit-ransform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: skewX(50deg);
    transform: skewX(50deg);
    background: #e04c53;
    z-index: 4;
  }
  .container-island .house .face .door .door-roof:before {
    content: "";
    position: absolute;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
    top: 0;
    left: -13px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid #919cd2;
    border-left: 13px solid #919cd2;
    border-right: 13px solid transparent;
  }
  .container-island .house .face .door .door-roof:after {
    content: "";
    position: absolute;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
    width: 100%;
    height: 2px;
    background: #ffffff;
    bottom: -2px;
  }
  .container-island .house .face .door .base {
    position: absolute;
    width: 100%;
    left: 26px;
    height: 15px;
    background: #ffffff;
    bottom: -15px;
  }
  .container-island .house .face .door .base:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 100%;
    background: #919cd2;
    right: 100%;
  }
  .container-island .house .face .door .base:after {
    content: "";
    position: absolute;
    background: #919cd2;
    width: 100%;
    height: 2px;
    left: 0;
    top: 4px;
  }
  .container-island .house .face .door .pillar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 26px;
    z-index: 5;
  }
  .container-island .house .face .door .pillar .pillar-left,
  .container-island .house .face .door .pillar .pillar-right {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    background: #ffffff;
    width: 10px;
    height: 35%;
    border-top: 1px solid #919cd2;
    border-left: 5px solid #919cd2;
  }
  .container-island .house .face .door .pillar .pillar-left:before,
  .container-island .house .face .door .pillar .pillar-right:before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 6px;
    background: #ffffff;
    height: 115%;
    left: -3px;
    border-left: 3px solid #919cd2;
    bottom: calc(100% + 1px);
  }
  .container-island .house .face .door .pillar .pillar-left:after,
  .container-island .house .face .door .pillar .pillar-right:after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 10px;
    border-left: 5px solid #919cd2;
    border-bottom: 1px solid #919cd2;
    bottom: calc(215% + 1px);
    height: 21%;
    left: -5px;
    background: #ffffff;
  }
  .container-island .house .face .door .pillar .pillar-left {
    left: -5px;
  }
  .container-island .house .face .door .pillar .pillar-right {
    right: 5px;
  }
  .container-island .house .face .door .true-door {
    position: absolute;
    background: #1b98a1;
    bottom: 0px;
    height: 70%;
    width: 60%;
    z-index: 2;
    left: 31%;
  }
  .container-island .house .face .door .true-door:before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 4px;
    left: 4px;
    border: 1px solid #215fa0;
  }
  .container-island .house .face .door .true-door:after {
    content: "";
    background: #215fa0;
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc((100% - 24px) / 2);
    box-shadow: 0px -37px 0px 0px #215fa0;
  }
  .container-island .house .face .door .stair {
    position: absolute;
    top: 100%;
    right: calc(100% - 26px);
    height: 15px;
  }
  .container-island .house .face .door .stair .side-1,
  .container-island .house .face .door .stair .side-2 {
    position: absolute;
    height: 100%;
    background: #ffffff;
    top: 0;
    transform-origin: 100% 0;
    transform: skewX(-30deg);
  }
  .container-island .house .face .door .stair .side-1 {
    right: 0;
    z-index: 5;
    width: 4px;
  }
  .container-island .house .face .door .stair .side-2 {
    right: 3px;
    z-index: 2;
    width: 12px;
  }
  .container-island .house .face .door .stair .step {
    position: absolute;
    z-index: 3;
    background: #919cd2;
    width: 8px;
    height: 4px;
    top: 50%;
    right: 8px;
    transform-origin: 0 0;
    transform: skewX(-30deg) translateY(-50%);
  }
  .container-island .house .side {
    position: absolute;
    background: #919cd2;
    width: 40%;
    height: 100%;
    right: 100%;
    bottom: 0;
  }
  .container-island .house .side .window-container {
    position: absolute;
    background: #ffffff;
    bottom: 17%;
    left: 50%;
    width: 70%;
    height: 45%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .container-island .house .side .window-container:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    border-bottom: 20px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 5px solid transparent;
    bottom: 100%;
  }
  .container-island .house .side .window-container .window-left .tile-1 {
    position: absolute;
    background: #21527d;
    width: 60%;
    height: 90%;
    top: 5%;
    left: 5%;
  }
  .container-island .house .side .window-container .window-left .tile-1:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-10deg);
    background: #258bbc;
  }
  .container-island .house .side .window-container .window-left .tile-2 {
    box-sizing: border-box;
    position: absolute;
    width: 58%;
    height: 15px;
    border-left: 8px solid transparent;
    border-bottom: 15px solid #21527d;
    bottom: calc(100% + 2px);
    left: 7%;
  }
  .container-island .house .side .window-container .window-left .tile-2:before {
    content: "";
    position: absolute;
    height: 15px;
    width: 20%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-30deg);
    background: #258bbc;
  }
  .container-island .house .side .window-container .window-left .tile-2:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    border-bottom: 7.5px solid transparent;
    border-top: 7.5px solid #21527d;
    border-left: 2px solid #21527d;
    border-right: 2px solid transparent;
  }
  .container-island .house .side .window-container .window-right .tile-1 {
    position: absolute;
    background: #21527d;
    width: 25%;
    height: 90%;
    top: 5%;
    right: 5%;
  }
  .container-island .house .side .window-container .window-right .tile-1:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-5deg);
    background: #258bbc;
  }
  .container-island .house .side .window-container .window-right .tile-2 {
    box-sizing: border-box;
    position: absolute;
    width: 14px;
    border-left: 4px solid transparent;
    border-bottom: 15px solid #21527d;
    border-right: 4px solid transparent;
    bottom: calc(100% + 2px);
    right: 5%;
  }
  .container-island .house .side .window-container .window-right .tile-2:before {
    content: "";
    position: absolute;
    height: 15px;
    width: 50%;
    top: 0;
    left: 55%;
    transform: translateX(-50%) skewX(10deg);
    background: #258bbc;
  }
  .container-island .house .roof {
    box-sizing: content-box;
    position: absolute;
    background: #5e262f;
    width: calc(40% + 3px);
    height: 109px;
    bottom: calc(100% - 5px);
    right: calc(100% + 7px);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
  }
  .container-island .house .skylight {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #919cd2;
    left: -30px;
    top: -84px;
  }
  .container-island .house .skylight:before {
    content: "";
    position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #919cd2;
    bottom: 100%;
    left: 0;
  }
  .container-island .house .skylight:after {
    content: "";
    position: absolute;
    border-top: 20px solid #ccd0e4;
    border-left: 20px solid #ccd0e4;
    border-right: 20px solid transparent;
    border-bottom: 20px solid transparent;
    left: 100%;
    top: 0;
  }
  .container-island .house .skylight .skylight-roof {
    position: absolute;
    background: #e04c53;
    width: 100%;
    height: 20px;
    transform-origin: 0 100%;
    transform: skew(-45deg);
    left: 100%;
    bottom: 100%;
  }
  .container-island .house .skylight .skylight-roof:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e04c53;
    top: 0;
    left: 0;
    transform-origin: 0 100%;
    transform: skewX(244deg);
  }
  .container-island .house .skylight .roof-border {
    border-top: 3px solid #5e262f;
    border-right: 3px solid #5e262f;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    position: absolute;
    transform: rotate(-45deg);
    width: 24px;
    height: 24px;
    z-index: 2;
    left: 4px;
    top: -14px;
  }
  .container-island .house .skylight .window {
    position: absolute;
    width: 20px;
    height: 35px;
    background: #ffffff;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
  .container-island .house .skylight .window .tile-top,
  .container-island .house .skylight .window .tile-bot {
    position: absolute;
    background: #21527d;
    width: 15px;
    height: 13px;
    left: 50%;
    transform: translateX(-50%);
  }
  .container-island .house .skylight .window .tile-top:before,
  .container-island .house .skylight .window .tile-bot:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-10deg);
    background: #258bbc;
  }
  .container-island .house .skylight .window .tile-top {
    top: 3px;
  }
  .container-island .house .skylight .window .tile-bot {
    bottom: 3px;
  }
  .container-island .house .text {
    font-family: "PT Sans Narrow";
    z-index: 99;
    position: absolute;
    color: #e53b33;
    transform-origin: 0 0;
    transform: rotate(-35deg);
    font-size: 25px;
    left: 40px;
    top: -35px;
  }
  .container-island .house .weathercock {
    position: absolute;
    left: calc(50% - 1px);
    bottom: calc(100% + 104px);
    z-index: 5;
    width: 2px;
    background: #ffffff;
    height: 8px;
  }
  .container-island .house .weathercock:before, .container-island .house .weathercock:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: #ffffff;
    left: -5px;
    top: 3px;
  }
  .container-island .house .weathercock:before {
    transform: rotate(20deg);
  }
  .container-island .house .weathercock:after {
    transform: rotate(-20deg);
  }
  .container-island .house .weathercock .part-1 {
    position: absolute;
    bottom: 100%;
    left: -3px;
    width: 12px;
    height: 6px;
    background: #ffffff;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
  }
  .container-island .house .weathercock .part-2 {
    position: absolute;
    bottom: calc(100% + 6px);
    left: -6px;
    width: 8px;
    height: 4px;
    background: #ffffff;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
  }
  .container-island .bushs {
    position: absolute;
    width: 57%;
    height: 40px;
    z-index: 6;
    left: 50%;
    transform: translateX(-50%);
    top: -15%;
  }
  .container-island .bushs .bush {
    position: absolute;
    border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
    top: 0;
    height: 100%;
    width: 50px;
    background: #084d56;
    overflow: hidden;
  }
  .container-island .bushs .bush:nth-child(1) {
    left: 0px;
    top: 24.5px;
    z-index: 49;
  }
  .container-island .bushs .bush:nth-child(2) {
    left: 40px;
    top: 18px;
    z-index: 36;
  }
  .container-island .bushs .bush:nth-child(3) {
    left: 80px;
    top: 12.5px;
    z-index: 25;
  }
  .container-island .bushs .bush:nth-child(4) {
    left: 120px;
    top: 8px;
    z-index: 16;
  }
  .container-island .bushs .bush:nth-child(5) {
    left: 160px;
    top: 4.5px;
    z-index: 9;
  }
  .container-island .bushs .bush:nth-child(6) {
    left: 200px;
    top: 2px;
    z-index: 4;
  }
  .container-island .bushs .bush:nth-child(7) {
    left: 240px;
    top: 0.5px;
    z-index: 1;
  }
  .container-island .bushs .bush:nth-child(8) {
    left: 280px;
    top: 0px;
    z-index: 0;
  }
  .container-island .bushs .bush:nth-child(9) {
    left: 320px;
    top: 0.5px;
    z-index: 1;
  }
  .container-island .bushs .bush:nth-child(10) {
    left: 360px;
    top: 2px;
    z-index: 4;
  }
  .container-island .bushs .bush:nth-child(11) {
    left: 400px;
    top: 4.5px;
    z-index: 9;
  }
  .container-island .bushs .bush:nth-child(12) {
    left: 440px;
    top: 8px;
    z-index: 16;
  }
  .container-island .bushs .bush:nth-child(13) {
    left: 480px;
    top: 12.5px;
    z-index: 25;
  }
  .container-island .bushs .bush:nth-child(14) {
    left: 520px;
    top: 18px;
    z-index: 36;
  }
  .container-island .bushs .bush:nth-child(15) {
    left: 560px;
    top: 24.5px;
    z-index: 49;
  }
  .container-island .bushs .bush:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -25%;
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
    background: #1a9667;
  }
  .container-island .tree {
    width: 20px;
    height: 150px;
    background: #8c8765;
    position: absolute;
  }
  .container-island .tree:before {
    content: "";
    width: 100%;
    padding-top: 100%;
    background: #8c8765;
    display: block;
    left: 0;
    bottom: 93%;
    position: absolute;
    border-radius: 50%;
  }
  .container-island .tree:after {
    content: "";
    width: 100%;
    background: #8c8765;
    display: block;
    left: 0;
    bottom: 100%;
    position: absolute;
    transform-origin: 0 100%;
    transform: skewX(10deg) rotate(-10deg);
    height: 100px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .container-island .tree .leaf {
    width: 150px;
    height: 30px;
    background-image: repeating-linear-gradient(100deg, transparent, transparent 3px, green 3px, green 6px);
    border-radius: 100% 10% 0% 100%/100% 40% 0% 20%;
    border-top: 4px solid green;
    position: absolute;
    left: -170px;
    bottom: 155%;
    z-index: 5;
    transform-origin: 100% 100%;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
  }
  .container-island .tree .leaf.leaf-1 {
    animation-name: animation-leaf-1;
    transform: rotate(-15deg);
  }
  .container-island .tree .leaf.leaf-2 {
    animation-delay: 0.8s;
    animation-name: animation-leaf-2;
    transform: rotate(10deg);
  }
  .container-island .tree .leaf.leaf-3 {
    animation-delay: 1.2s;
    animation-name: animation-leaf-3;
    transform: rotate(15deg) rotateY(180deg);
  }
  .container-island .tree .leaf.leaf-4 {
    animation-delay: 0.4s;
    animation-name: animation-leaf-4;
    transform: rotate(-10deg) rotateY(180deg);
  }
  .container-island .tree .leaf.leaf-5 {
    animation-delay: 1.6s;
    animation-name: animation-leaf-5;
    transform: rotate(-30deg) rotateY(180deg);
  }
  @keyframes animation-leaf-1 {
    from {
      transform: rotate(-15deg);
    }
    to {
      transform: rotate(-10deg);
    }
  }
  @keyframes animation-leaf-2 {
    from {
      transform: rotate(10deg);
    }
    to {
      transform: rotate(15deg);
    }
  }
  @keyframes animation-leaf-3 {
    from {
      transform: rotate(15deg) rotateY(180deg);
    }
    to {
      transform: rotate(10deg) rotateY(180deg);
    }
  }
  @keyframes animation-leaf-4 {
    from {
      transform: rotate(-10deg) rotateY(180deg);
    }
    to {
      transform: rotate(-5deg) rotateY(180deg);
    }
  }
  @keyframes animation-leaf-5 {
    from {
      transform: rotate(-30deg) rotateY(180deg);
    }
    to {
      transform: rotate(-35deg) rotateY(180deg);
    }
  }
  .container-island .tree.tree-left {
    z-index: 6;
    left: 18%;
    bottom: 50%;
    transform-origin: 0 100%;
    transform: skewX(-10deg);
  }
  .container-island .tree.tree-middle {
    z-index: 2;
    bottom: 70%;
    left: 65%;
    transform-origin: 0 100%;
    transform: skewX(10deg) rotateY(180deg) scale(0.9);
  }
  .container-island .tree.tree-right {
    z-index: 10;
    bottom: 40%;
    right: 18%;
    transform-origin: 0 100%;
    transform: skewX(5deg) rotateY(180deg) scale(0.8);
  }
  .container-island .tree.tree-right .leaf-1 {
    animation-name: animation-leaf-1-1;
    transform: rotate(-15deg) rotateY(180deg);
  }
  .container-island .tree.tree-right .leaf-2 {
    animation-name: animation-leaf-2-1;
    transform: rotate(10deg) rotateY(180deg);
  }
  .container-island .tree.tree-right .leaf-3 {
    animation-name: animation-leaf-3-1;
    transform: rotate(15deg);
  }
  .container-island .tree.tree-right .leaf-4 {
    animation-name: animation-leaf-4-1;
    transform: rotate(-10deg);
  }
  .container-island .tree.tree-right .leaf-5 {
    animation-name: animation-leaf-5-1;
    transform: rotate(-30deg);
  }
  @keyframes animation-leaf-1-1 {
    from {
      transform: rotate(-15deg) rotateY(180deg);
    }
    to {
      transform: rotate(-10deg) rotateY(180deg);
    }
  }
  @keyframes animation-leaf-2-1 {
    from {
      transform: rotate(10deg) rotateY(180deg);
    }
    to {
      transform: rotate(15deg) rotateY(180deg);
    }
  }
  @keyframes animation-leaf-3-1 {
    from {
      transform: rotate(15deg);
    }
    to {
      transform: rotate(10deg);
    }
  }
  @keyframes animation-leaf-4-1 {
    from {
      transform: rotate(-10deg);
    }
    to {
      transform: rotate(-5deg);
    }
  }
  @keyframes animation-leaf-5-1 {
    from {
      transform: rotate(-30deg);
    }
    to {
      transform: rotate(-35deg);
    }
  }
  .container-island .rock .rock-1 {
    position: absolute;
    border-radius: 50% 50% 50% 50%/70% 70% 30% 30%;
    background: #c1d29f;
    width: 40px;
    height: 20px;
    position: absolute;
    left: 10%;
    bottom: 50%;
    z-index: 5;
    overflow: hidden;
  }
  .container-island .rock .rock-1:before {
    content: "";
    background: #a8a668;
    width: 100%;
    height: 150%;
    top: -25%;
    left: -50%;
    position: absolute;
    border-radius: 50% 50% 50% 50%/70% 70% 30% 30%;
  }
  .container-island .rock .rock-2 {
    position: absolute;
    border-radius: 50% 50% 50% 50%/30% 70% 30% 70%;
    background: #c1d29f;
    width: 70px;
    height: 40px;
    position: absolute;
    left: 23%;
    bottom: 35%;
    z-index: 5;
    overflow: hidden;
  }
  .container-island .rock .rock-2:before {
    content: "";
    background: #a8a668;
    width: 100%;
    height: 150%;
    top: -25%;
    left: -50%;
    position: absolute;
    border-radius: 50% 50% 50% 50%/70% 70% 30% 30%;
  }
  
  .signature {
    position: absolute;
    color: #ffffff;
    bottom: 5px;
    right: 5px;
    z-index: 200;
    font-family: Arial;
    font-size: 10px;
  }
  .signature a {
    color: #ffffff;
    text-decoration: none;
  }

  .scene {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #b2e1ff 0%, #66b6fc 100%);
  }
  .scene .nuage {
    position: absolute;
    width: 140px;
    height: 60px;
  }
  .scene .nuage svg {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transform: translateX(-100%);
  }
  .scene .sun {
    content: "";
    padding: 6%;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    opacity: 0.6;
    -webkit-animation: shine 120ms linear infinite;
            animation: shine 120ms linear infinite;
  }
  .scene .sun svg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
  }
  
  @-webkit-keyframes shine {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(5deg) scale(1.005);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  
  @keyframes shine {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(5deg) scale(1.005);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  ::-webkit-scrollbar {
    width: 0px; 
  }
  

  ::-webkit-scrollbar-thumb {
    background-color:rgb(24,140,189); 

  }
  

  ::-webkit-scrollbar-track {
    background-color: rgb(9,116,187); 
  }
  