1@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap");
 2
 3::-webkit-scrollbar {
 4  display: none;
 5}
 6
 7html {
 8  -ms-overflow-style: none; /* IE and Edge */
 9  scrollbar-width: none; /* Firefox */
10}
11
12body {
13  position: relative;
14  margin: 0;
15  font-family: "Source Sans Pro";
16  color: white;
17  background: #000000;
18  font-weight: 200;
19  text-shadow: 0px 0px 5px black;
20}
21#container {
22  position: relative;
23}
24
25#film-container {
26  display: flex;
27  flex-wrap: nowrap;
28  overflow: scroll;
29  width: fit-content;
30}
31
32.film-image-container {
33  position: relative;
34  width: calc(100vh);
35  height: calc(100vh);
36  background-size: cover;
37  background-position: center;
38}
39
40.film-image-title {
41  font-size: 24px;
42  font-weight: 400;
43}
44
45.film-image-info {
46  position: absolute;
47  bottom: 32px;
48  left: 32px;
49  padding: 16px;
50  background: #000000c7;
51}
52
53#home-link {
54  position: absolute;
55  top: 40px;
56  left: 40px;
57}
58#home-link-a {
59  color: white;
60  text-decoration: none;
61  font-size: 32px;
62  font-weight: 400;
63}
64#home-icon {
65  width: 32px;
66  height: 32px;
67}