@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMonoWoff2/IBMPlexMono-Regular-Latin1.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMonoWoff2/IBMPlexMono-Bold-Latin1.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  padding: 32px 24px;
  color: #333333;
  background-color: #c0c0c0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.4;
}

a,
a:link,
a:visited,
a:active {
  color: #333333;
}

a:hover {
  background-color: #333333;
  color: #c0c0c0;
}
.background-text {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  color: rgba(85, 85, 85, 0.043);
  font-size: clamp(2rem, 4.4vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px auto;
  align-items: start;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: sticky;
  top: 32px;
}

.sidebar h1 {
  margin: 0;
  color: #333333;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content h2 {
  margin: 0 0 16px;
  color: #333333;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%);
  border: 1px solid #333333;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.content {
  min-width: 0;
  color: #333333;
}

.home-page .content p {
  max-width: 46em;
  margin: 0 0 12px;
}

.home-page .content p:first-child {
  margin-top: 0;
}

.recent-music {
  margin-top: 56px;
}

.albums {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

iframe {
  width: 350px;
  height: 470px;
  border: 0;
}

.discography-intro {
  max-width: 46em;
  margin: 0 0 24px;
}

.discography {
  width: max-content;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.discography th,
.discography td {
  padding: 6px 24px 6px 0;
  color: #333333;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.discography th {
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid #333333;
  padding-bottom: 8px;
}

.discography tbody tr {
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.discography tbody tr:hover {
  background-color: rgba(51, 51, 51, 0.08);
}

.discography th:last-child,
.discography td:last-child {
  padding-right: 0;
}

.discography th:nth-child(2),
.discography td:nth-child(2) {
  min-width: 80px;
}

.discography th:nth-child(3),
.discography td:nth-child(3) {
  min-width: 100px;
}

@media (max-width: 700px) {
  body {
    padding: 20px 16px;
  }

  .background-text {
    padding: 6vw;
    font-size: clamp(2rem, 11vw, 4rem);
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    position: static;
    gap: 16px;
  }

  .sidebar img {
    width: 120px;
    height: 120px;
  }

  .content {
    max-width: 100%;
    overflow-x: auto;
  }

  .recent-music {
    margin-top: 40px;
  }

  .discography {
    font-size: 12px;
  }

  .discography th,
  .discography td {
    padding-right: 12px;
  }

  .discography th:last-child,
  .discography td:last-child {
    padding-right: 0;
  }
}
