@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #8a2525;
    
    width: 100vw;
    height: 100vh;
}


/* Comienza el estilo botones */
.botones{
    background-color: #8a2525;
    border: 10px;
    border-color: #680909 ;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    
    padding: 3vh;
}

button {
    appearance: none;
    background-color: #7a7070;
    border: 0.125em solid #1a1a1a;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1em 2.3em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
   }
   
   button:disabled {
    pointer-events: none;
   }
   
   button:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
   }
   
   button:active {
    box-shadow: none;
    transform: translateY(0);
   }

/* Fin estilo botones */


/* Comienzo del estilo encabezado */
.encabezado{
    background-color: #c24242;
}
.encabezado h1{
    justify-content: center;
    align-items: center;
    
    font-family: Source Code Pro;
    font-size: 6vmin;
    color: black;
    text-align: center;
}
/* Fin estilo encabezado */


/* Comienzo estilos de la presentacion */
.personal {
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    background-color: #c24242;
    border: 5px;
    border-color: #c24242;

    width: 90%;
    margin: auto;
    margin-top: 3%;
    margin-bottom: 3%;
}

.foto{
    width:30%
}

.foto img{
    width: 100%;

    border-radius: 10%;
    border: 10px #c24242; 
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding: 3%;
}

.texto{
    font-family: Ubuntu;
    font-size: 2vmin;
    color: black;
    line-height: 3vmax;
    text-align: justify;
  
    margin: 3px;
    padding-right: 3%;


    padding: 2vh;
}
/* Fin estilos presentacion*/