/*      
Theme Name: Himalia Theme      
Author: Your Name      
Description: Un thème simple pour Himalia SRL      
Version: 1.0      
*/      
    
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;700&display=swap');    
    
html, body {    
    height: 100%;    
    margin: 0;    
    padding: 0;    
}    
    
body {    
    background-color: black;    
    font-family: 'Roboto', Arial, sans-serif;    
    display: flex;    
    justify-content: center;    
    align-items: center;    
}    
  
.centered-content {    
    text-align: center;    
    color: white;    
    font-size: 18px;    
    letter-spacing: 1px;    
    line-height: 1.5;    
}    
    
.centered-content h1 {    
    font-weight: 700;    
    margin-bottom: 10px;    
    font-size: 70px;    
    font-weight: 600;    
    background-image: radial-gradient(circle, #553c9a, #ee4b2b);    
    color: transparent;    
    background-clip: text;    
    -webkit-background-clip: text;    
    background-size: 200% 200%;  
    animation: gradient 20s ease-in-out infinite;  
	line-height: 1;    
}    
  
@keyframes gradient {  
  0% {  
    background-position: 50% 0%;  
  }  
  25% {  
    background-position: 0% 50%;  
  }  
  50% {  
    background-position: 100% 50%;  
  }  
  75% {  a
    background-position: 50% 100%;  
  }  
  100% {  
    background-position: 50% 0%;  
  }  
}  
  
.centered-content p {    
    font-weight: 100;    
    margin: 0 0 15px;    
}    
    
.centered-content a {    
    font-weight: 700;    
    text-decoration: none;    
    border-bottom: 1px solid #553c9a;    
    transition: border-color 0.3s;    
    color: white;    
}    
    
.centered-content a:hover {    
    border-color: transparent;    
}   
