#tituloTarifas h1 {
  color: yellow;
  margin-top: 20px;
  margin-left: 10%;
}

#contTarifa {
  text-align: center;
  color: white;
  font-size: 18px;
  margin-top: 50px;
}

#tituloTabla {
  font-size: 26px;
}

#tarifa1 {
  color: lime;
  text-align: center;
}

#tarifa2 {
  text-align: center;
}

#contDescargaTarifa {
  margin-top: 150px;
}

#contDescargaTarifa .col-xl-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

#contDescargaTarifa img {
  height: 100px;
  border: solid lime;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  /* Agrega una transición suave */
  background-color: lime;
}

#contDescargaTarifa p {
  color: white;
  font-size: 17px;
}

#contDescargaTarifa img:hover {
  transform: scale(1.1);
  /* Hace que la imagen se haga un poco más grande al pasar el mouse por encima */
}



table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  /* Ajusta el valor de "0.8" para cambiar la opacidad */
}

tr:nth-child(even) {
  background-color: grey;
}

#pubGaceta a {
  text-decoration: none;
  color: white;
}

.destacada {
  background-color: yellow;
}

@media screen and (max-width:768px) {

  #tituloTarifas h1 {
    color: yellow;
    margin-top: 20px;
    text-align: center;
    margin-left: 0%;
  }

  #tarifa {
    font-size: 12px;
  }

  #tituloTabla {
    font-size: 15px;
  }

  #contDescargaTarifa .col-xl-4 {
    margin-top: 0px;
  }

}