body{
    background-color: rgb(235, 235, 235);
}

.Encabezado{
    display: flex;
    flex-direction: row;
}
.Logo{
    flex: 0.6;
    height: calc(50px + 10vw);
    text-align: center;
}
.Logo > img{
    width: calc(50px + 50%);
}
.GYN{  
    flex: 1;
    text-align: center;
    height: calc(50px + 10vw);
}
.GYN > p{
    text-align: center;
    margin: calc(1px + 0.1vw);
}

.DivListaPaginas{
    margin-top: 5px;
    font-size: calc(1px + 2vw);
}
.ListaPaginas{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.ListaPaginas > li{
    float: left;
    flex: 1;
    text-align: center;
}
.ListaPaginas > li a{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 100;

    transition: .25s;
    height: calc(10px + 2.45vw);
}
.ListaPaginas > li a:hover{
    color:rgb(232, 232, 232);
    background-color: rgba(255, 255, 255, 0.09);
    cursor: grab;
}

.GYN > p{
    font-family: 'Playwrite CU';
}
