/* ------------------contenido principal (nombre y avatar) --------------------------*/

.contenidoPrincipal {
    padding: 25px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contenidoPrincipal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.titulo-principal {
    text-align: center;
    display: inline;
    color: #572840;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, .50);
    font-size: 50px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    background: #eedae4;

}

.div-nombre {
    font-size: 1.3em;
    line-height: 2;

    width: 70%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.div-avatar {
    max-width: 100%;

    width: 30%;
    flex-grow: 2;
    flex-shrink: 2;
}

.contenidoPrincipal-btn {
    flex-grow: 2;
}

.contenidoPrincipal-cursos-link a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.inks-profesionales-nav {
    display: flex;
    justify-content: space-between;
}

.nav-link-profesional {
    padding: 10px;
    margin-bottom: 10px;
    color: #633E63;
    background-color: #eedae4;
    text-decoration: none;
    transition: .5s;
    flex-grow: 2;
}

.nav-link-profesional:hover {
    color: #FFF;
    background-color: #aa5377;
    border-radius: 40px;
}