.head {
    background-color: #ffffff;
    color: #707072;
    width: 100%;
    box-sizing: border-box;

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

    padding: .75rem .75rem 0rem .75rem;
}
.head__logo {
    margin-bottom: 0rem;
}

.head__nav {
    text-align: center;
}

.head__enlace {
    
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    margin-right: .7rem;
    margin-bottom: .7rem;
    margin-left: .7rem;
}
nav a{
    text-decoration: none;
    color:#707072;
}
nav a:hover{
    color: #106ebe;
    font-size: 1.5rem;
    text-decoration: underline;
}
@media screen and (max-width: 950px) {
    .head {
        flex-direction: column;
        justify-content: space-around;
        border: none;
    }
    .head__enlace {
        margin-right: .3rem;
        margin-bottom: .3rem;
        margin-left: .3rem;
    }
}
@media screen and (max-width: 700px) {
    .head {
        flex-direction: row;
        justify-content: space-around;
        border: none;
    }
    .head__enlace {
        font-size: 1rem;
        font-weight: bold;
        display: inline-block;
        margin-right: .3rem;
        margin-bottom: .3rem;
        margin-left: .3rem;
    }
}