.App h2, .App .TitleList .Title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.App p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1em;
}
.App .Header {
  background: linear-gradient(to bottom, black 0%, transparent 100%);
  display: flex;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  z-index: 5;
}
.App .Header .logo {
  cursor: pointer;
  color: #00D1CA;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: -1.5px;
}
.App .UserProfile {
  margin-left: auto;
}
.App .UserProfile .User {
  display: flex;
}
.App .UserProfile .User:hover {
  cursor: pointer;
}
.App .UserProfile .User .image {
  border-radius: 44px;
  margin-left: 10px;
  overflow: hidden;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  border: 3px solid transparent;
  transition: border 0.125s ease;
}
.App .UserProfile .User .image img {
  width: 100%;
  display: block;
}
.App .UserProfile .User .name {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 300;
  height: 44px;
}
.App .Hero {
  width: 100%;
  position: relative;
  background-size: cover;
  min-height: 485px;
}
.App .Hero .content {
  position: relative;
  z-index: 4;
  width: 500px;
  left: 10vw;
  top: 110px;
}
.App .Hero .content .logo {
  max-width: 400px;
  display: block;
  position: relative;
  left: -5px;
  margin-bottom: 0.5em;
}
.App .Hero .content p {
  width: 100%;
}
.App .Hero .content .button-wrapper {
  display: flex;
  width: 400px;
  margin-top: 30px;
}
.App .Hero .content .button-wrapper .Button:first-child {
  margin-right: 10px;
}
.App .Hero .overlay {
  background: linear-gradient(to bottom, #221f1f 0%, rgba(34, 31, 31, 0.116) 100%);
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
}
.App .Button {
  background: transparent;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  border: 2px solid rgba(245, 245, 241, 0.2);
  border-radius: 44px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.125s ease;
}
.App .Button:hover {
  border: 2px solid #f5f5f1;
}
.App .Button[data-primary=true] {
  border: 2px solid #00D1CA;
  color: #00D1CA;
}
.App .Button[data-primary=true]:hover {
  background: #00D1CA;
  color: #ffffff;
}
.App .TitleList {
  padding: 20px 40px;
  box-sizing: border-box;
  transition: opacity 3s ease;
  opacity: 0;
  position: relative;
  z-index: 4;
}
.App .TitleList .titles-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  width: calc(100vw - 80px);
  box-sizing: border-box;
  justify-content: space-between;
}
.App .TitleList[data-loaded=true] {
  opacity: 1;
}
.App .Item {
  width: calc(20% - 10px);
  min-width: calc(20% - 10px);
  background-color: #000000;
  flex: 1 0 auto;
  background-position: center;
  background-size: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-right: 10px;
  transition: all 1s ease;
}
.App .Item:last-child {
  margin-right: 0;
}
.App .Item .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0, transparent 100%);
  padding: 20px;
  position: relative;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.125s ease;
}
.App .Item .overlay .title {
  font-size: 22px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.App .Item .overlay .rating {
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s ease 0.125s;
}
.App .Item .overlay .plot {
  font-size: 14px;
  margin-top: 100px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: margin 0.25s ease 0.125s, opacity 0.25s ease 0.25s;
}
.App .Item:nth-child(n+6) {
  margin-top: 20px;
}
.App .Item:hover .overlay {
  opacity: 1;
  pointer-events: all;
}
.App .Item:hover .overlay .plot {
  margin-top: 10px;
  opacity: 1;
}
.App .Item:hover .overlay .title {
  opacity: 1;
}
.App .Item:hover .overlay .rating {
  opacity: 1;
}
.App .Item:hover .overlay .ListToggle {
  opacity: 1;
}
.App .ListToggle {
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  font-size: 16px;
  border-radius: 32px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0;
  cursor: pointer;
}
.App .ListToggle:hover {
  border: 2px solid #ffffff;
}
.App .ListToggle:hover div {
  top: -32px;
}
.App .ListToggle > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 64px;
  width: 32px;
  transition: 0.125s ease;
}
.App .ListToggle div svg path {
  fill: #ffffff;
}
.App .ListToggle[data-toggled=true] {
  background: #00d1ca;
  border: 2px solid #00d1ca;
}
.App .ListToggle[data-toggled=true] div {
  top: -32px;
}@import "https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900";
/* http://meyerweb.com/eric/tools/css/reset/ 
  v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: #221f1f;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}