/* Formatos para pagina principal */
/*Fuentes para utilizar*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik+One');

body{
background-color: rgb(124, 29, 29);
}
/*Espacio principal*/
.cuerpo {
    background-image: url();
    width: 100vw;
    height: 100vh;
}

.botonera{

    justify-content: space-between;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

/*boton volver*/

.box
.box{
    width: 140px;
    height: auto;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 900;
}
  
.box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
}
  
.box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
}
  
.box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
  
.box:hover:before {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
}
  
.box:hover:after {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
}
  
.button {
    color: black;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
}

/*boton ingresar*/

.Ingresar
button {
    display: inline-block;
    border-radius: 4px;
    background-color: #3d405b;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 17px;
    padding: 16px;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
   
button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
   
button span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}
   
button:hover span {
    padding-right: 15px;
}
   
button:hover span:after{
    opacity: 1;
    right: 0;
}


.titulo{
    width: 80%;
    margin: auto;
    height: 20%;

/*organizar contenido*/

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

/*propiedades del texto*/

    background-color: rgb(173, 40, 40);
    font-size:150% ;
    color: white;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1.15em;

}

/*espacio con informacion personal*/

.info{ 
    width: 60%;
    margin: auto;
    margin-top: 3%;

/*organizar contenido*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.texto{

    width: 75%;
    padding-right: 3%;

/*propiedades del texto*/

    font-size:1.5rem ;
    color: white;
    text-align: justify;
    font-family: 'Playfair Display', serif;

}

.foto img{
    width:85%;
    border-radius: 1.5%;
    border: 20px solid darkred;
}