@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.TituloTabla{
        background-color: #000066;
        color:white;
        width: 100%;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 30px;
        font-weight: 200;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
}
.ZonaNombres{
    background-color: #72e5ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 200;
    width:40%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.TablaGeneral{
    font-family: "Roboto Condensed", sans-serif;
    /*font-size: 15px;
    font-weight: 200;*/
    border: 1px solid rgb(183, 209, 243);
    
}
.cabecera{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 25px;
    font-weight: 300;
    
}

.BotonVolver{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

h2{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

td{
    border: 1px solid #ddd;
    width: 150px;
}

@media only screen and (max-width : 600px) {
    .TituloTabla{
        font-size: 20px;
        font-weight: 200;
    }
    .ZonaNombres{
        width: 95%;
    }
    td{
        width: auto;
    }
    .cabecera{
        font-size: 20px;
        font-weight: 200;
    }
}