* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #0b0b13;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #0b0b13;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: rgb(124, 208, 223);
}

.music-page {
  width: min(1000px, 100%);
  margin: 0 auto;
  background: #000;
}

.music-header {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(16px, 4vw, 42px);
}

.music-header h1 {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.music-header h1 a {
  background: #000;
  color: #fff;
}

.music-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 7vw, 90px);
}

.music-header img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 1s ease;
}

.music-header a:hover img {
  transform: scale(1.2);
}

.gallery {
  display: grid;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 620px) {
  .music-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .music-header nav {
    width: min(260px, 100%);
    justify-content: space-between;
  }
}
