
/* Reglas de estilos mias */

.inter-font
{
    font-family: 'Inter', system-ui, sans-serif;
}

.titulo
{
    font-size: 1.8rem;
    font-weight: 450;
}

.footer-text
{
    font-size: 1.1rem;
    font-weight: 500;
}

#contenedorDeImagenGrande
{
    position: fixed; /* El elemento se queda fijo con respecto a la pantalla */

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,0.8);

    display: none;

    justify-content: center;
    align-items: center;
}

.imagen-de-galeria
{
    cursor: pointer;
}

#imagenGrande
{
    max-width: 100%;
    max-height: 100%;
}

#botonCerrar
{
  position: absolute;
  top: 20px;
  right: 30px;

  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Clases de bootstrap modificadas */

.nav-link
{
    font-size: 1.20rem;
    font-weight: 500;
}

.dropdown-item 
{
    white-space: normal;
}

/* Reglas de estilo responsive */

@media (max-width: 991.98px) 
{
  .fs-5-peque 
  {
    font-size: 1.3rem;
  }
}