*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #e8e4d9;
  --text: #1a1a1a;
  --accent: #5a9ca0;
  --warm: #d5733e;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem 3rem;
}

.cover-wrap {
  width: min(420px, 88vw);
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(26, 26, 26, 0.12),
    0 4px 12px rgba(26, 26, 26, 0.06);
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.genres {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.contact:hover {
  opacity: 1;
  color: var(--warm);
}

@media (min-width: 640px) {
  .cover-wrap {
    width: min(480px, 70vw);
  }

  .genres {
    font-size: 0.78rem;
  }
}
