.hero-background {
  width: 100%;
  height: 100vh;            
  background-size: cover;
  background-position: center;
  position: relative;        
}

.overlay-text {
  position: absolute;
  bottom: 20px;   
  right: 20px;    
  text-align: right;
  color: white;
}

.overlay-text h1 {
  font-size: 3rem;              
  color: white;
  filter: blur(4px);             
  transition: filter 0.6s ease;   
  margin: 20px 0;
cursor: pointer;
}

.overlay-text h1:hover {
  filter: blur(1px);              
}

.overlay-text a {
  color: inherit;                
  text-decoration: none;
}

.overlay-text a:hover {
  text-decoration: none;         
}
.page-background {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 40px;  
  position: relative;
}

.page-content {
  max-width: 800px;

  line-height: 1.6;
  color: white;
  position: relative; 
}

.sticker {
  position: absolute;
  top: 5%;       
  right: 5%;     
  z-index: 10;    
}

.sticker img {
  width: 30%;   
  height: auto;
}
.back-arrow {

  font-size: 2rem;       
  color: white;
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.back-arrow:hover {
  transform: translateX(-5px); 
  color: #ffcc00;               
}


.inf-main_4cbbd97795fad6dfbf3d00963c2776eb h4 {
}
.inf-form h4 {
  color: white!important;
}
.inf-form {
background-color: none!important;
  width: 40%!important;
  padding: 0!important;
  margin: 0!important;
  
}
.inf-main_4cbbd97795fad6dfbf3d00963c2776eb {
  background-color: #0000!important;

}
.inf-submit input {
  background-color: #eb4956!important;
}
.inf-main_4cbbd97795fad6dfbf3d00963c2776eb {
  margin: 0!important;
  padding: 0!important;
}
.image-qui-tourne {
  width: 15vw;             
  max-width: 200px;        
  animation: rotation 20s linear infinite;
  position: fixed;         
  top: 10%;                  
  right: 10%;                
  z-index: 1000;
}

    @keyframes rotation {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }