*{
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    background-color:white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

.contenedor {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem auto;
    overflow: hidden;    
}
.cabecera {
    flex: 0 1 auto;
    align-self: stretch;
}
.cabecera img {
    width: 100%;
}

.ruta {
    font-size: 24px;
    text-transform: uppercase;
    margin: 22px 0;
    text-align: left;
    width: 100%;
    border-bottom: 2px solid #c3bc00;
    color: #275e57;
    align-self: stretch;
}

.enlaces {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: stretch;
    width: 80%;
}

.fila {
    width: 100%;
    flex: 1 1 auto;
    align-self: stretch;
    background-color: gray;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    margin-bottom: 25px;
    padding: 5px;
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    transition: 0.4s;
}
.fila a{
    text-decoration:none;
    color: #fff;
}
.fila:hover{
 background: #c3bc00;
 transition: 0.4s;
}
.posicion {
    flex: 0 1 auto;
    align-self: center;
    
}
.nombre {
    flex: 1 1 auto;
    align-self: auto;
    padding: 0 1rem;
}
.fichero {
    flex: 0 1 auto;
    align-self: auto;
    color: goldenrod;
    text-transform: uppercase;
}