/*FONTS*/
* {
  font-family: "Times New Roman";
}

@font-face {
  font-family: "CALLIEEMIA";
  src: url("fonts/CALLIEEMIA.ttf");
}

h1 {
  font-family:"CALLIEEMIA", 'Times New Roman', Times, serif;
  font-size: 80px;
  color: white;
  margin: auto;
  font-weight: 100;
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 24px;
  color: black;
  margin: 0;
  text-align: center;
}

h3 {
  font-size: 14px;
  color: black;
  margin: 0;
  font-weight: 100;
  padding-bottom: 14px;
  padding-left: 10px;
}

p {
  font-size: 16px;
  color: black;
  margin: 0;
  padding-bottom: 16px;
}

a {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: orangered;
}

a:active {
  color: orangered;
}

.thoughts:hover {
  color: orangered;
  cursor: pointer;
}

.thoughts:active {
  color: orangered;
} 

li {
  font-size: 16px;
  color: black;
  margin: 0;
}

#reviewbody {
  font-size: 16px;
  color: black;
  margin: 0;
  padding-bottom: 16px;
}

/*BANNER*/
.banner {
  display: flex;
  margin: 0;
  align-items: center;
}

.banner a {
  color: white !important;
  font-family: "CALLIEEMIA", 'Times New Roman', Times, serif;
  font-size: 20px;
  padding-left: 30px;
  margin: 0;
}

.banner a:hover {
  color: orangered !important;
} 

.banner a:active {
  color: orangered !important;
}

.highlight {
  background-color: #0f090f;
  padding: 0;
}

/*BODY*/
body {
  background-image: url('movie_score.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#container {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
}

/*REVIEW*/
#review {
  overflow-y: scroll;
  height: 450px;
  background-color: white;
  padding: 15px;
  padding-right: 23px;
}

#review div {
  margin-left: 10px;
}

#review::-webkit-scrollbar {
  width: 8px;
}

#review::-webkit-scrollbar-thumb {
  background-color: orangered;
  border-radius: 0;
}

#scrap{
  width: 40%;
  top: 0px;
  text-align: justify;
}

#thoughtsonfilm {
  background-color: white;
  padding: 20px;
  padding-bottom: 4px;
}

/*FILMS*/
.ticket {
  width: 200px;
  height: auto;
}

#films {
  width: 80%;
  height: 750px;
  overflow-y: scroll;
  -ms-overflow-style: none; 
  scrollbar-width: none;
  padding-left: 30px;
}

#films ol {
  display: flex;
  flex-flow: row wrap;
  /*justify-content: space-around;*/
  align-items: center;
  list-style: none; 
  padding: 0;
  width: 100%;
}

#films img {
  display: inline-block;
  transition: 0.5s; 
}

#films img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.rotated-image {
  transform: rotate(var(--rotation));
}

/*FOOTER*/
footer {
  text-align: left;
  padding: 10px;
  bottom: 0;
  margin: 0;
  width: 100%;
}