/* BASIC STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --lightbox: #242424;
}
body {
  /* Quito los márgenes, superior e inferior del "body" */
  /* margin: 24px 0 48px; */
  /* font: 20px / 28px "Marck Script", cursive; */
  /* margin: 0 50px 0 50px; */
  font: 20px / 28px;
}

@media (max-width: 1000px) {
  /* 'notification' anulada en el HTML */
  /* .notification {
    display: none;
  } */
}
.navbar-brand {
  letter-spacing: 5px;
  font-weight: bold;
  transition: 1s;
}

.navbar-brand:hover {
  /* transform: scale(1.05); */
  letter-spacing: 10px;
}

/* IMAGE GRID STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.image-grid {
  /* margin-left: 120px; */
  /* margin-right: 120px; */
}

.image-grid figure {
  margin-bottom: 0;
}
.image-grid img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);

  transition: box-shadow 0.2s;
}
.image-grid a:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}

/* LIGHTBOX STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.lightbox-modal .modal-content {
  background: var(--lightbox);
}
.lightbox-modal .btn-close {
  position: absolute;
  top: 60px;
  right: 100px;
  font-size: 1.2rem;
  z-index: 10;
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
  text-align: center;
}

.lightbox-modal img {
  width: auto;
  max-height: 100vh;
  max-width: 90%;
}

.lightbox-modal .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  /* Modifico la transparecia del fondo del comentario*/
  background: rgba(36, 36, 36, 0.2);
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
}
.lightbox-modal .carousel-control-prev {
  left: 100px;
}
.lightbox-modal .carousel-control-next {
  right: 100px;
}
