@import url(https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap);
* { font-family: 'Anonymous Pro', monospace; }
body {
  margin: 0;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url(../images/background.jpg);
  background-position: center top;
  background-repeat: repeat;
}

#site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  transform: translateY(-100%);
  transition: transform .25s ease;
  z-index: 30;
  box-sizing: border-box;
}
#site_header.visible { transform: translateY(0); }
.site_header--logo {
  display: block;
  height: 27px;
  width: auto;
}

#menu_toggle {
  width: 21px;
  height: 16px;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
}
#menu_toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #141414;
  transition: transform .25s ease, opacity .25s ease;
}
#menu_toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu_toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#menu_toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#menu_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 35;
}
#menu_backdrop.open { opacity: 1; visibility: visible; }

#menu_clip {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 40;
}
#menu_drawer {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: 90%;
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 88px 20px 32px;
  box-sizing: border-box;
  overflow-y: auto;
  pointer-events: auto;
}
#menu_drawer.open { transform: translateX(0); }
#menu_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 21px;
  height: 16px;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#menu_close span {
  display: block;
  height: 2px;
  width: 100%;
  background: #141414;
}
#menu_close span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu_close span:nth-child(2) { opacity: 0; }
#menu_close span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#menu_links { list-style: none; margin: 0; padding: 0; }
#menu_links li { margin-bottom: 5px; }
#menu_links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #141414;
  text-decoration: none;
  transition: transform .2s ease;
  white-space: nowrap;
}
#menu_links a::after {
  content: '>';
  font-weight: 400;
  margin-left: 8px;
}
#menu_links a:hover,
#menu_links a:active {
  transform: translateX(8px);
}

.slideshow { margin-top: 0; width: 100%; position: relative; }
.slideshow--page {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.slideshow--page img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, .1);
  scroll-margin-top: 72px;
}

@media (max-width: 549px) {
  .container { width: 100%; padding: 0; }
}
@media (max-width: 340px) {
  #menu_links a { font-size: 1.7rem; }
}
@media (min-width: 550px) {
  #site_header {
    left: 50%;
    right: auto;
    width: 560px;
    max-width: calc(100% - 40px);
    transform: translate(-50%, -100%);
  }
  #site_header.visible { transform: translate(-50%, 0); }

  #menu_backdrop {
    left: calc(50% - 280px);
    right: auto;
    width: 560px;
    max-width: calc(100% - 40px);
  }

  #menu_clip {
    left: calc(50% - 280px);
    right: auto;
    width: 560px;
    max-width: calc(100% - 40px);
  }

  #menu_links a { font-size: 2.2rem; }
}
@media (min-width: 1200px) {
  .container { min-width: 1180px; }
}
#menu_disclaimer {
  margin: 48px 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #141414;
}
.foto-com-links { position: relative; display: block; }
.foto-com-links img { display: block; width: 100%; }
.foto-link { position: absolute; display: block; }
