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

.espacioTitulo{
    width: 100%;
    height: auto;
    background-color: #000066;
    top: 0;
    left: 0;
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.titulo{
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 30px;
}

.espacioTextos{
    background-color: #72f3ff;
    font-family: "Roboto Condensed", sans-serif;
    color: black;
    font-size: 17px;
    font-weight: 200;
    width: 40%;
    margin: auto;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin-bottom: 5px;
}

.Tabla{
    margin: auto;
    border: solid 2px;
}
.cabecera{
    width: 100px;
    font-family: "Roboto Condensed", sans-serif;
    color: black;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    border:solid 1px;
}

.BotonVolver{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
  tr:nth-child(odd) {
    background-color: #f2f2f2; /* Color para filas impares */
  }
  
  /* Aplica un color a las filas pares */
  tr:nth-child(even) {
    background-color: #ffffff; /* Color para filas pares */
  }

  .Tdclass{
      text-align: center;

  }

  @media (max-width: 500px) {
    .espacioTextos{
        width: 90%;

    }

  }