
* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  background: #E9DCC9;
  font-family: "Anonymous Pro", monospace;
  color: #111;
  overflow-x: hidden;
}


.back {
  position: fixed;
  top: 20px;
  left: 25px;
  font-size: 26px;
  color: #111;
  text-decoration: none;
  z-index: 50;
}


.title {
  text-align: center;
  font-size: clamp(40px, 10vw, 120px);
  margin-top: 100px;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 0.05em;
}


.gallery-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 40px;
}


.photo {
  width: 180px;
  height: 180px;
  background: #ccc;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.photo:hover {
  transform: scale(1.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

