:root {
  --paper: #f6f2e9;
  --ink: #171717;
  --muted: #4b4b4b;
  --line: #202020;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  min-height: 100vh;
  padding: 1.2rem;
  background: var(--paper);
  color: var(--ink);
  font-family: "Patrick Hand", "Trebuchet MS", sans-serif;
  display: grid;
  place-items: center;
}

.poster {
  width: min(760px, 100%);
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid var(--line);
  padding: 2.1rem 1rem 1.8rem;
  text-align: center;
  position: relative;
}

.hero-mark {
  display: block;
  margin: 0 auto 0.2rem;
  width: min(710px, 100%);
  height: auto;
}

.divider {
  margin: 0.85rem auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.divider span {
  width: min(200px, 30vw);
  border-top: 2px solid var(--line);
  border-radius: 999px;
  position: relative;
}

.divider span::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--line);
  border-radius: 50%;
}

.divider span:first-child::before {
  left: -3px;
}

.divider span:last-child::before {
  right: -3px;
}

.divider i {
  font-style: normal;
  font-size: 1.2rem;
}

.contact {
  display: grid;
  gap: 0.45rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.05;
}

.band-photo {
  margin: 0.2rem auto 0.95rem;
  width: min(430px, 100%);
}

.band-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--line);
  border-radius: 18px;
  filter: saturate(0.92) contrast(1.04);
}

.contact p {
  margin: 0;
}

.contact strong {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-right: 0.35rem;
  font-family: "Amatic SC", "Patrick Hand", cursive;
  font-size: 1.3em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact a {
  color: inherit;
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--line);
}

.tl {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 12px;
}

.tr {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 12px;
}

.bl {
  left: 10px;
  bottom: 10px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 12px;
}

.br {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 12px;
}

@media (max-width: 560px) {
  .poster {
    padding: 1.45rem 0.75rem;
  }

  .corner {
    width: 26px;
    height: 26px;
  }
}
