:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --icon-filter: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --icon-filter: brightness(0) invert(1);
  }
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url('PPNeueMontreal-Book-subset.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url('PPNeueMontreal-Bold-subset.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 1.5rem;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  font-family: "PP Neue Montreal", sans-serif;
}

h1 {
  margin-bottom: 1rem;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.link-icon {
  width: 24px;
  height: 24px;
  filter: var(--icon-filter);
  transition: transform 0.2s ease;
}

.link-icon:hover {
  transform: scale(1.1);
}

.linkedin-icon {
  filter: none !important;
}

.applemusic-icon {
  filter: none !important;
}

.letterboxd-icon {
  filter: none !important;
}

/* Mobile and/or narrow viewports */
@media (max-width: 500px) {
  body {
    padding: 1.5rem;
    box-sizing: border-box;
    justify-content: flex-start;
    padding-top: 25vh;
    text-align: center;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .social-links {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    justify-content: center;
    margin-top: 0;
  }
}
