html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #2B0F01;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 1.5rem;
  box-sizing: border-box;

  max-width: 420px;
  width: 100%;
}

.pretti a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-style: italic;
  margin: 0.4rem 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.pretti a:hover {
  opacity: 1;
}

.pretti.tini a {
  font-size: 0.79rem;
}

.album {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  /*height: auto;*/

  border: 1px solid #B7975D;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.album:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/*mobile*/
@media (max-width: 480px) {
  .pretti a {
    font-size: 0.9rem;
  }
  .pretti.tini a {
    font-size: 0.75rem;
  }
}
