/* Base styles */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.title-wrapper {
  position: relative;
  height: 9rem;
}

.title {
  top: 0;
  position: absolute;
  z-index: 1;
}

h1 {
  font-size: 9rem;
  line-height: 1.1;
}

h2 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  text-align: right;
  padding-right: 25%;
}

a {
  color: var(--white);
  text-decoration: underline;
  font-family: "Special Gothic Expanded One", sans-serif;

  &:hover {
    text-decoration: none;
  }
}

.gothic {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-style: normal;
}

.socials {
  padding-top: 5vh;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 6rem;
}

.timeline__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline__item-header {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: end;
}

.timeline__year {
  font-size: 0.75rem;
}

.timeline__title {
  font-size: 1.5rem;
  line-height: 1.1;
}

.timeline__role {
  font-size: 0.75rem;
}

.timeline__description {
  font-size: 0.75rem;
}

.content {
  min-width: 400px;
}

.container {
  padding: 0 2rem 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12rem;
}

.poster-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.poster {
  aspect-ratio: 2/3;
  top: 10vh;
  height: 80vh;
  position: absolute;
  left: 0;
}
