* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;              
}

body {
  font-family: 'Bitcount', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
  background: transparent;
}

.music {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  padding-left: 280px;         
}

.info {
  text-align: center;
}

.headline {
  font-size: 4.5rem;
  margin-bottom: 28px;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.facts dt {
  font-size: 1.1rem;
  opacity: 0.6;
}
.facts dd {
  font-size: 1.8rem;
  margin-bottom: 8px;
}


.songs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(42vw, 420px);
}

.songs-title {
  font-size: 1.6rem;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 4px;
}

.song-embed {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
}