body {
  background: #ffffff;
}

#home {
  transform: rotate(90deg);
  width: 64px;
  padding: 16px;
  position: fixed;
  top: 16px;
  left: 16px;
  border: 1px solid #000;
  transition: 0.1s ease-in-out;
  z-index: 100;
}

#home:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-width: 2px;
}

#photo-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

#photo-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  justify-items: center;
  margin-top: 24px;
}

#photographer-title {
  margin: 0;
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: clamp(36px, 8vw, 54px);
  z-index: 5;
}

#photo-header > div {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#photo-header div a img {
  height: 30px;
  filter: invert(0.5);
}

#pictures {
  padding-top: 24px;
  display: grid;
  gap: 18px;
}

#pictures div img {
  width: min(90vw, 900px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

#to-programmer-page {
  font-family: 'Open Sans', sans-serif;
  font-size: 14pt;
  color: black;
  padding: 12px 16px;
  border: 1px solid black;
  transition: 0.1s ease-in-out;
  text-align: center;
}

#to-programmer-page:hover {
  border-width: 2px;
  background-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  #home {
    width: 54px;
    padding: 12px;
  }

  #photo-wrapper {
    padding-top: 72px;
  }

  #to-programmer-page {
    position: static;
    width: 100%;
  }
}
