body {
  margin: 0;
  background: #fff;
  font-family: "Jacquarda Bastarda 9", serif;
  color: #000;
  text-align: center;
}

.page {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.week {
  font-size: 26px;
  font-weight: normal;
  margin-top: 50px;
  margin-bottom: 30px;
}

.feelings.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 35px;
}

@keyframes jitter {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(1px, -1px) rotate(0.4deg); }
  50% { transform: translate(-1px, 1px) rotate(-0.4deg); }
  75% { transform: translate(1px, 1px) rotate(0.2deg); }
}

.hover-text:hover {
  animation: jitter 0.25s infinite;
}


.photo {
  position: relative;
  width: min(700px, 80vw);
  margin: 0 auto 70px;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}


.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid #000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-inner {
  width: 80%;
  max-width: 560px;
  text-align: left;
}

.overlay-inner h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.overlay-inner p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}


.photo:hover img { opacity: 0; }
.photo:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}


.photo.is-open img { opacity: 0; }
.photo.is-open .overlay { opacity: 1; pointer-events: auto; }
