*{
    margin: 0%;
    padding: 5px;
    box-sizing: border-box;
}
body{
    background: red;
    color: black;
    width: 100%;
    height: 100%;
}

div{
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
}

/* comienza estilo de boton */

.button {
 background-color: #eee;
 border: none;
 padding: 3vmin;
 font-size: 2vmin;
 width: 10em;
 border-radius: 1rem;
 color: lightcoral;
 box-shadow: 0 0.4rem #dfd9d9;
 cursor: pointer;
 text-align: center;
}

.button:active {
 color: white;
 box-shadow: 0 0.2rem #dfd9d9;
 transform: translateY(0.2rem);
}

.button:hover:not(:disabled) {
 background: lightcoral;
 color: white;
 text-shadow: 0 0.1rem #bcb4b4;
}

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

/* termina estilo de boton */

/* titulo e informacion de la persona */
.titulo{
    font-size: 8vmin;
    text-align: center;
}

.info{
    font-size: 4vmin;
    text-align: center;
}

/* formato de imagen */

.imagenes{
    display: flex;
    height: 50vmin;
    margin: auto;
    
}



