@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap");

::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body {
  position: relative;
  margin: 0;
  font-family: "Source Sans Pro";
  color: white;
  background: #000000;
  font-weight: 200;
  text-shadow: 0px 0px 5px black;
}
#container {
  position: relative;
}

#film-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  width: fit-content;
}

.film-image-container {
  position: relative;
  width: calc(100vh);
  height: calc(100vh);
  background-size: cover;
  background-position: center;
}

.film-image-title {
  font-size: 24px;
  font-weight: 400;
}

.film-image-info {
  position: absolute;
  bottom: 32px;
  left: 32px;
  padding: 16px;
  background: #000000c7;
}

#home-link {
  position: absolute;
  top: 40px;
  left: 40px;
}
#home-link-a {
  color: white;
  text-decoration: none;
  font-size: 32px;
  font-weight: 400;
}
#home-icon {
  width: 32px;
  height: 32px;
}
