@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap");

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track-piece {
  background-color: #393939;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}

html {
  scrollbar-color: #ffffff #393939;
  scrollbar-width: thin;
}

body {
  position: relative;
  margin: 0;
  font-family: "Source Sans Pro";
  color: white;
  background: #000000;
  font-weight: 200;
  text-shadow: 0px 0px 5px black;
  width: 100vw;
  height: 100vh;
}
#container {
  position: relative;
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

#series-container {
  display: flex;
}

.film-series-container {
  position: relative;
  width: 512px;
  height: 512px;
  background-size: cover;
  background-position: center;
}

.film-series-title {
  position: absolute;
  top: 32px;
  left: 32px;
  font-weight: 400;
  font-size: 32px;
}

.film-series-shot-count {
  position: absolute;
  top: 32px;
  right: 32px;
  font-weight: 300;
  font-size: 24px;
  text-align: right;
}

.film-series-tech-info {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-weight: 300;
  font-size: 24px;
}

.film-series-shooting-dates {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-weight: 300;
  font-size: 24px;
  writing-mode: vertical-rl;
  text-align: right;
}

.film-series-container-wrapper {
  color: white;
  text-decoration: none;
}

#home-link {
  position: absolute;
  top: 40px;
  right: 40px;
}
#home-link-a {
  color: white;
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
}
#home-icon {
  width: 32px;
  height: 32px;
}
