body {
  background-color: #333333;
  padding: 0;
  margin: 0;
  color: #eeeeee;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

a.link-back {
  text-decoration: none;
}

content img {
  width: 100%;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  content .element {
    transition: transform .4s;
  }

  content .element:hover {
    transform: scale(1.02);
  }  
}

content .element a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 960px){
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 540px){
  h1 {
    font-size: 1.5rem;
  }
}

footer .footerText a, footer .footerText a:hover {
  text-decoration: underline;
  color: #6c757d;
}

/** Lightbox **/
.sl-overlay {
  background: #333333;
  opacity: 1;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter { 
  color: #eee; opacity: 1; 
}


/**
Slideshow
*/

.modal {
  display: flex;
  /*flex-direction: column;*/
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 100%;
  min-height: 250px;
  position: absolute;
  z-index: 2;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.modal .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
button {
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  background-color: black;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 1em;
}

.btn-close {
  transform: translate(10px, -20px);
  padding: 0.5rem 0.7rem;
  background: #eee;
  border-radius: 50%;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hidden {
  display: none;
}
