body{
    background-color: #afafaf60;
    display: flex;
    flex-direction: column; /* Disponer los elementos en columna */
    align-items: center;
    /* align-content: center; */

    /* align-items: center; */
    color: black;
    transition: 2s;
    position: relative;
    
}
#particles-js {
    position: fixed; /* Mantiene las partículas fijas en el fondo */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Coloca el fondo detrás del contenido */
}
h2 {
padding: 0;
text-decoration: none;
font-weight: lighter;
font-size: 1rem;
text-align: justify;

}

 p{
    position: absolute;
    animation: animacion_crecer 20s infinite;
    color: rgb(255, 255, 255);
    z-index: 100;
 }
 #text{
    position: absolute;
    color: black;
    left: 70px;
    top: 414px;
 }
 #text_2{
    left: 19px;
 }
 
  
#toggle{
    width: 50px;
    border: none;
    background-color: transparent;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    right: 50px;
    top: 15px;
    box-sizing: content-box;
}



#toggle_icon{
    width: 60px;
    height: 60px;
    /* background-color: rgb(224, 222, 222); */
    /* border-radius: 50%; */
    object-fit: cover;
    position: fixed;
    top: 20px;
    z-index: 1000;
    

    
}
.vr_logo{
    /* position: absolute; */
    position: fixed;
    left: 50px;
    top: 20px;
    width: 80px;
    height: 40px;
    z-index: 1000;
    
}
main{
  
    width: 600px;
    padding: 15px;
    padding-left: 40px;
    border-radius: 20px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    box-shadow: 10px 10px 50px -25px rgba(1, 103, 150, 0.785);
    position: relative;
}

/* header{
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* flex-direction: row; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* gap: 20px; */

 */
.titulo{
    text-shadow: 0px 10px 5px rgba(0, 0, 0, 0.176);
    font-family: "Playfair Display", serif;
    /* z-index: 50; */
}
.photo{
 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;

}

.blur{
    width: 100%;
    height: 70px;
  background-color: #ffffff00; 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    /* box-shadow: 10px 10px 50px 0px white; */
   
}
aside{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   position: absolute;
   right: 35px;
   bottom: 50px;
   /* background-color: red; */
   gap: 200px; 
}
.icon{
    width: 30px;
    height: 30px;
    transition: 0.5s;
    object-fit: cover;
    /* background-color: rgb(224, 222, 222); */

    border-radius: 50%;
    
}
.icon:hover{
    transform: scale(1.5);
}
article{
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 500px;
    font-family: "Playfair Display", serif;
    text-align: justify;
    letter-spacing: 0.3px;        
    word-spacing: 1px;     
}
section{
    background-color:  rgba(175, 175, 175, 0.114);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 500px;
    min-height: 500px;

    border-radius: 15px;

}
.cards{
    background-color: rgb(186, 186, 186);
    margin-top: 20px;
    gap: 50px;
    width: 220px; 
    height: 200px; 
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 10px 10px 50px -25px rgba(1, 17, 87, 0.751);
    transition: 0.5s;
    
    overflow: hidden;
    
}
.cards:hover{
    /* box-shadow: 0px 0px 50px -20px rgb(3, 37, 192); */
    box-shadow: 0px 0px 50px -20px rgb(0, 174, 255);
    transform: scale(1.05);
}

.cards_img{
    height: 100%; 
    width: 100%;
    display: block; 
    object-fit: cover;
    filter: brightness(90%);
}
/* ! dark mode */
body.dark-mode {
    background-color:  #1c1c1c;
    color: white;
}

main.dark-mode {
    background-color:  #2e2e2e79;
    box-shadow: 10px 10px 50px -35px rgb(175, 177, 183);
    
}

section.dark-mode {
    background-color: rgba(50, 50, 50, 0.6);
}

.cards.dark-mode {
    background-color: rgba(80, 80, 80, 0.9);
    color: white;
}

.titulo.dark-mode {
    text-shadow: 0px 10px 5px rgba(255, 255, 255, 0.5);
}
#footer.dark-mode{
    color: white;
    background-color: transparent;
    box-shadow: 0px 0px 35px -10px rgb(175, 177, 183);
    }




/* !                                MOBILE                           */
@media (max-width: 600px) {
    body{
        display: flex;
        align-content: center;
        height: 100svh;
        position: relative;
    }

 main{
  
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin-top:100px;
    margin-left: 10px;
    margin-bottom: 200px;
    
   }
    #text{
    color: black;
    left: 60px;
    top: 470px;
 }

   #mobile{
    position: absolute;
   
    z-index: 1000;
    font-size: 18px;
    font-weight: 800;
    left: 62px;
    bottom: 825px;
    animation: animacion_crecer 10s infinite;
}
   .titulo{
    margin-left: 30px;
   }
   section{
    display: flex;
    width: 100%;
   flex-direction: column;
   margin-top:-20px ;
   }
   aside{
    position: absolute;
    right: 35px;
    top: 550px;
    gap: 189px;
   }
   .vr_logo{
    position: absolute;
    left: 0;
    position: fixed;
  
    
}
#toggle{
   width: 5px;
   /* display: none; */
   position: fixed;
   z-index: 500;
}


#toggle_icon{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: px;
}
#footer{
    position: absolute;
    bottom: 0;
}
#section_coment{
    margin-bottom: 500px;
}
#feedback{
background-color: red;
    
}
} 



 /*!                                         ANIMACIONES                                            */
 @keyframes animacion_crecer {
    0%, 100% {
        transform: scale(1); 
    }
    50% {
        transform: scale(1.2); 
    }
}
  @keyframes divs {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02); 
    }
}

.cards_1{
    animation: divs 2s 1.3s infinite;
}
.cards_2{
    animation: divs 2s 1.8s infinite;
}
.cards_3{
    animation: divs 2s 2.6s infinite;
}
.cards_4{
    animation: divs 2s 3s infinite;
}