@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

body{
    background: rgb(142, 214, 216);
    color: black;
    height: 100vh;
    width: 100vw;
}

.cabecera{
    display: flex;
    justify-content: space-between;
    height: 6vh;
    width: 100vw;
}

.principal{
    display: flex;
    flex-direction: row;
    height: 40vh;
    width: 100vw;
}

/* comienza estilo de boton */

.boton {
 background-color: #eee;
 font-family: 'Martian Mono', monospace;
 border-radius: 5px;
 font-size: 3vmin;
 height: 3em;
 width: 10em;
 line-height: 3em;
 color: rgb(90, 46, 123);
 box-shadow: 0 0.4rem #dfd9d9;
 cursor: pointer;
 text-align: center;
 transition: 0.5s;
 text-decoration: none;
}

.boton:active {
 color: rgb(255, 255, 255);
 box-shadow: 0 0.1rem #dfd9d9;
 transform: translateY(0.2rem);
}

.boton:hover:not(:disabled) {
 background: rgb(90, 46, 123);
 color: white;
 text-shadow: 0 0.2rem #000000;
}

.boton:disabled {
 cursor: auto;
 color: grey;
}

/* termina estilo de boton */

/* titulo e informacion de la persona */
.titulo{
    font-size: 9vmin;
    display: hidden;
    text-align: center;
    height: 20vh;
    width: 100vw;
    font-family: 'Kanit', sans-serif;
}

.descripcion{
    font-size: 3.8vmin;
    text-align: center;
    height: 40vh;
    width: 45vw;
    font-family: 'Kanit', sans-serif;
}

/* formato de imagen */

.foto{
    height: 40vh;
    margin: auto;
    border: 10px solid transparent;
    padding: 15px;
    border-image: url(border.png) 50 round;
    border-color: rgb(17, 14, 122);
    border-radius: 65px;
}

.foto.boton:hover:not(:disabled) {
    background: rgb(90, 46, 123);
    color: white;
    text-shadow: 0 0.2rem pink;
}