/* control shift a para comentar */
/* Formatos de la página inicial */
@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Inconsolata:wght@600&display=swap');

body{
    /*Propiedades del texto*/
    height: 100%;
    background: rgb(216, 148, 233);
}


/*Espacio para botones*/
.botonera{
     width: 100%;
    height: 10%;
    margin-top: 10%;
    display: flex; 
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}


/*Espacio para el título*/
.titulo {
    width: 65%;
    margin: auto;
    height: 10%;    
    margin-top: 2%;
    background: rgb(222, 161, 237);
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    color:antiquewhite;
    font-family: 'Ultra', serif;
    font-size: 2.2vh;
    -webkit-text-stroke: 0.1px black;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 5px  #7c177b;
    /*Borde*/
    border: 1px solid antiquewhite;
    border-radius: 10px;
}

.titulo:hover{
    box-shadow: 5px 5px 40px #e3b5b8;
}

/*Espacio para la informacion personal */
.info {
    width: 70%;
    margin: auto;
    margin-top: 10%;
    margin-left: 15%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
}
.texto {
    width: 55%;
    color: antiquewhite;
    background: rgb(222, 161, 237);
    font-family: 'Inconsolata', monospace;
    text-align-last: center;
    font-size: 30px;
}

/*Espacio para la foto*/
.foto {
    /*Ancho*/
    width: 25%;
}
.foto img {
    border-radius: 10%;
    border: 3px solid antiquewhite;
}

