* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255, 255, 255, 0.04),
      transparent 58%
    ),
    #111;

  color: white;
}


/* PAGE */

main {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 34px;

  padding: 84px 20px 58px;
}


/* MAIN LOGO */

.band-logo {
  width: min(690px, 72vw);
  height: 155px;

  display: block;
  overflow: hidden;
}

.band-logo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  mix-blend-mode: screen;
}

/* EPK BUTTON */

.epk-link {
  width: min(420px, 72vw);

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 86px;

  padding: 18px 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.025),
      transparent 65%
    ),
    #151515;

  border: 4px solid white;

  color: #ffc515;

  text-decoration: none;
  text-align: center;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.epk-link:hover {
  transform: translateY(-4px);
  filter: brightness(1.15);
}


/* LINK CARDS */

nav {
  width: min(980px, 88vw);

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 18px;

  gap: 28px;
}

nav a {
  display: block;
  overflow: hidden;

  background: #151515;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

nav img {
  width: 100%;
  display: block;
}


/* HOVER */

nav a:hover {
  transform: translateY(-5px);
  filter: brightness(1.12);
}


/* PHONE */

@media (max-width: 700px) {

  main {
    gap: 34px;
    padding: 42px 16px 32px;
  }

  .band-logo {
    width: min(560px, 88vw);
    height: 125px;
  }

  nav {
    width: min(520px, 88vw);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  nav a:hover {
    transform: none;
  }
}

