/* control shift a para comentar */
/* Formatos de la página inicial */
@import url('https://fonts.googleapis.com/css2?family=Emblema+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Inconsolata:wght@600&display=swap');

body{
    /*Propiedades del texto*/
    background: rgba(131, 12, 115, 0.486);

}


/*Espacio para botones*/
.botonera{
    /*Propiedades del texto*/
    /*background-color:#FF9E9E;*/
    /*Alto y ancho*/
     width: 100%;
    height: 100%;
    /*Organizar contenido*/
    display: flex; 
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

/*Formato botones*/


   .btn {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color:rgba(131, 12, 115, 0.486);
   }
   
   .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(126, 62, 120);
   }
   
   .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgb(126, 62, 120);
   }
   
   .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
   }
   
   .btn::after {
    background-color: #e3b5b8;
   }
   
   .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
   }


/*Espacio para el título*/
.titulo {
    /*Alto y ancho*/
    width: 60%;
    margin: auto;
    height: 10%;    
    margin-top: 2%;
    /*Organizar contenido*/
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    /*Propiedades del texto*/
    color:rgb(126, 62, 120);
    font-family: 'Emblema One';
    font-size: 2.2vh;
    -webkit-text-stroke: 0.1px rgba(0, 0, 0, 0.144);
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 5px  #0f0f0f;
    /*Borde*/
    border: 2px solid black;
    border-radius: 8px;
}

.titulo:hover{
    box-shadow: 5px 5px 40px #e3b5b8;
}

/*Espacio para la informacion personal */
.info {
    /*Ancho y margen*/
    width: 90%;
    margin: auto;
    margin-top: 10%;
    margin-left: 5%;
    /*Organizar el contenido*/
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
}

/*.info:hover {
    box-shadow: 5px 5px 40px antiquewhite;
}*/

/*Espacio para el texto*/
.texto {
    /*Ancho*/
    width: 50%;
    /*Propiedades del texto*/
    color:  #000000;
    font-family: 'Inconsolata', monospace;
    text-align-last: center;
    font-size: 35px;
}

/*Espacio para la foto*/
.foto {
    /*Ancho*/
    width: 40%;
}
.foto img {
    /*Propiedades del texto*/
    /*Borde para la foto*/
    border-radius: 10%;
    border: 2px solid rgba(0, 0, 0, 0.212);
}