

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;900&display=swap');
 
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;

}

body{
    min-height: 100%;
    background: #EBC7E6;
   
}
html{height: 100%;}
.container {
width: 100%;
min-height: 100vh;
background-color: #EBC7E6;
}
nav{
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 80px;
    line-height:80px;
    z-index: 11;

}
.logo{
  display: flex;
  font-size: 40px;
  font-weight: 800;
  color:#645CBB;  
  letter-spacing: 3px;
  cursor: pointer;
  text-transform: uppercase;
} 
b{
    font-size: 70px;
    color: #A084DC;
}
.navItems{
    display: flex;
}
.navItems li{
    list-style: none;
    margin: 0 15px;
}
.navItems li a{
font-size: 25px;  
color: #645CBB; 
letter-spacing: 3px;
text-decoration: none;
text-transform: capitalize;
}
.navItems li:hover a,
.links a:hover{
    color: #A084DC;  
}
.links a{
    font-size: 30px;
    color: #645CBB; 
    margin: 25px 10px;
}
.wrapper{
    display: flex;
    width: 100vh;
    height: calc(100vh-80px);
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    overflow:hidden;
   
}


.wrapper::before {
  position: absolute;
  content: '';
  height: 20em;
  width: 20em;
  border-radius: 50%;
  left: -10%;
  top: 45%;
  background: linear-gradient(45deg, #a084dc, #bface2);
  animation: object1 6s linear infinite;
}

.wrapper::after {
  position: absolute;
  content: '';
  height: 7em;
  width: 7em;
  border-radius: 50%;
  left: 47%;
  top: 18%;
  background: linear-gradient(45deg, #a084dc, #bface2);
  animation: object2 6s linear infinite;
  
}

@keyframes object1 {
  50% {
    left: -10%;
    top: 36%;
  }
}

@keyframes object2 {
  50% {
    left: 50%;
    top: 27%;
  }
}

.cols0{
    width:60% ;
    z-index: 5;
}
.cols{
width: 50%;
}

.topline{
    display: block;
    position: relative;
    font-size: 35px;
    letter-spacing:5px;
    color: #645CBB; 
}
.topline::after{
    position: absolute;
    content:'' ;
    height: 4px;
    width: 45px;
    bottom: 10px;
    background-color:  #A084DC; 
}
h1{
    display: block;
    font-size: 7em;
    font-weight: 900;
    color: #645CBB;
}
.multiText{
    color:  #A084DC;
    text-transform: capitalize;
    
}
p{
display: block;
width: 800px;
font-size: 1.2em;
color: #645CBB;
}
.btns{
    width: 100%;
    position: absolute;
    left: 150px;
}
button{
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    background-color: #645CBB;
    padding: 8px 14px;
    margin: 40px 5px;
    letter-spacing: 2px;
    text-transform: capitalize;
    box-shadow: 0 15px 10px rgba(0,0,0,0.4);
}
button:hover{
    background-color: #A084DC;
}
.imgbox{
    position: absolute;
    width: 100%;
    height: 100%;
}
.imgbox img{
   position: relative;
   height: 100%;
   width: calc(130%-80px); 
   top: -18em;
   left:30%;
  
   animation: animateUser 4s linear infinite;
}
@keyframes animateUser {
    50%{
        right: 30px;
        top: -16.5em;
    }
}
.imgbox #splash{
    position: absolute;
    top:50%;
    left:48%;
    transform:translate(-50%,-50%)rotate(-35deg);
    width: 150%;
    filter: saturate(200%);
    animation: animate 4s linear infinite; 
}
@keyframes animate {
    50%{
       top: 49%;
       left: 51%;
       width: 155%;
    }
}

 /* Estilos para dispositivos grandes */
.container {
    max-width: 120rem;
    margin: 0 auto;
  }
  
  /* Estilos para dispositivos medianos */
  @media screen and (max-width: 64rem) {
    .container {
      max-width: 90rem;
      padding: 0 2rem;
    }
  }
  

  /* Estilos para dispositivos pequeños */
  @media screen and (max-width: 48rem) {
    .container {
      max-width: 60rem;
      padding: 0 2rem;
    }
    
    .wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column; /* cambia la dirección de los elementos a columnas */
    }
      
      .cols {
        flex-basis: 100%;
            width:480px;
      }
      
      .cols0 {
        flex-basis: 70%;
        padding-bottom:5em;
        padding-right: 6em;
      }
      
      .cols1 {
        flex-basis: 30%;
        padding-top:10em;
      }
  }
  
  /* Estilos para dispositivos extra-pequeños */
  @media screen and (max-width: 32rem) {
    .container {
        max-width: 30rem;
     
    }
    .wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column; /* cambia la dirección de los elementos a columnas */
    }
      
      .cols {
        flex-basis: 100%;
            width: 320px;
         
      }
      
      .cols0 {
        flex-basis: 70%;
        padding-bottom:5em;
      }
      
      .cols1 {
        flex-basis: 30%;
        padding-top:10em;
      }
    
  }
     
    