/* 
body{
    font-family: "Ubuntu Condensed", sans-serif;
    scroll-behavior: smooth;
}

header{
    background: white;
    box-shadow: 0 10px 10px -2px rgba(109, 109, 109, 0.5);
    position: sticky;
    top: 0px;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

#arrow{
    align-items: stretch; 
    justify-content: center;
    align-content: top;
    padding: 10px;
    margin-top: 5px;
}

#header_conteiner{
    display: flex;
    flex-direction: column;
}

a {
        text-decoration: none;
    }

main{
    display: flex;
    align-items: center;
    justify-content: center;
}

#bck{
    width: 50px;
    aspect-ratio: 1/1;
}

h1{
    text-align: center;
    display: block;
    margin-bottom: 6px;
}

h2{
    text-align: center;

} */
/* ----------------------- */

/* Reset Universal */

html {
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: "Ubuntu Condensed", sans-serif;
    scroll-behavior: smooth;
}

/* mio */
header{
    background: white;
    box-shadow: 0 10px 10px -2px rgba(109, 109, 109, 0.5);
    position: sticky;
    top: 0px;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

#arrow{
    align-items: stretch; 
    justify-content: center;
    align-content: top;
    padding: 10px;
    margin-top: 5px;
}

#header_conteiner{
    display: flex;
    flex-direction: column;
}

a {
        text-decoration: none;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
}

#bck{
    width: 50px;
    aspect-ratio: 1/1;
}

h1{
    text-align: center;
    display: block;
    margin-bottom: 6px;
}

h2{
    text-align: center;

} 
    /* end mio */

*,
*::after,
*::before {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}


/*Galeria de Imagenes*/

#galeria {
  /* position: fixed; */
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  max-width: 700px;
  min-width: 400px;
  padding: 0 10px; */
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
    width: min(800px,100%);
    columns: 3 100px;
    column-gap: 8px;
    margin-top: 10px;
}

#galeria img {
    display: block;
    /* width: 100%; */
    margin-bottom: 6px;
    border-radius: 7px;
    width: 100%;
    /* height: auto; */
    border-radius: 5px;
    cursor: pointer;
}

#img-activa {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/*Contenedor Principal del Lightbox*/

#contenedor-principal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

/*Contenedor interno del Lightbox*/

#contenedor-interno {
  /* border: 1px #f3f3f3 solid; */
  border-radius: 10px;
  padding: 2px;
  background: #3f3f3f;
  max-width: 700px;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  box-shadow: 0 10px 10px -2px rgba(109, 109, 109, 0.8);
}

/*Botones*/

button {
  cursor: pointer;
  background: transparent;
  border: none;
  color: #f3f3f3;
}

#btn-cierra {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
}

#btn-retrocede {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 3rem;
}

#btn-adelanta {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 3rem;
}
