html{
  scroll-behavior: smooth; 
  overflow-X: hidden;
}
  
body{
  margin:0px;  
}

#firstname{
  position: absolute;
  width: 40vw;
  text-align: right;
  top: 15vh;
  animation-name: moveName;
  animation-duration: 2s;
}

#lastname1{
  position: absolute;
  width: 40vw;
  text-align: right;
  top: 29vh;
  animation-name: moveName;
  animation-duration: 3s;
}

#lastname2{
  position: absolute;
  width: 40vw;
  text-align: right;
  top: 42vh;
  animation-name: moveName;
  animation-duration: 4s;
}

@keyframes moveName{
  0% {
    position: absolute;
    left: 100vw;
  }
  100% {
    position: absolute;
    left: 50px;
    
  }
}

#name{
  color: white;
  width: 100vw;
  height: 100vh;
  font-size: 80px;
  font-family: Lato;
  text-align: left; 
  font-weight: 800;
  padding-top:100px;
  padding-left:50px;
  background-color: #FF61AB;
  margin-right: 0px;
  
}

@media(max-width: 600px){

  #name{
   text-size: 40px;
    padding-left: 30px;
    

}
}
  
#yo {
  position: relative;
  align: right;
  padding-left: 710px;
  padding-right: 0px;
  animation-name: moveYo;
  animation-duration: 5s;
  height:50vh;
  width:70vh;
}


@keyframes moveYo{
  0% {
    position: absolute;
    left: 100vw;
  }
  100% {
    position: absolute;
    left: 50px;
    }
  }

@media(max-width:600px){
  yo{
    width: 20px;
    height: 30px;
  }
}

#nav{
  text-align: center;
  margin-left: 0px;
  margin-right: 0px;
  top: 50px;
    
  }



#inicio{
  text-align: left;
  margin-left: 20px;
  font-family: lato;
  positio: fixed;
}

.imagenes{ 
  padding-top: 10vh;
  text-align: center;
  
}

.texto {
font-family: kanit;
font-size: 25px;
line-height: 1.25;
text-align: justify;
color:#3F393B;
font-weight: 800; 
padding-left: 25px;
padding-right: 25px;
padding-top: 10vh;

}

h1 {
  color: #FF007C;
  font-size: 45px;
  font-family: lato;
  text-align: center; 
  font-weight: 800;
   padding-top: 10vh; 
}
  
#marquesina1{
  padding-top:7vw;
}


#hola{ 
  padding-bottom: 10vh;
}

.text {
font-family: kanit;
font-size: 25px;
line-height: 1.25;
text-align: justify;
color: white;
font-weight: 800;
padding-right: 25px; 
padding-left: 25px;
padding-top; 10vh;
padding-bottom: 10vh;
background-color: #FF61AB;

}
  

#iframe{ 
  text-align:center;
  padding-top:10vh;
}


.buttons {
 outline: none;
 cursor: pointer;
 border: none;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 padding: 2vh;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background:  #FF007C;
 color: white;
 text-decoration: none;
 z-index: 1;
 position: relative;
 width: 100px;
 height: 20px;
 border-radius: 5px;
 transition: all 0.3s ease;
 text-align: center;
 }


.buttons:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color:WHITE;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.buttons:hover {
  color:  #FF007C;
}

.buttons:hover:after {
  left: 0;
  width: 100%;
}