* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: whitesmoke;
  padding: 20px;
}
main {
  width: 800px;
  margin: 0px auto;
  border: 2px solid rgb(224, 224, 224);
}
header {
  margin: 0 auto;
  position: relative;
}

.hero {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
}

.hero img {
  width: 800px;
  display: block;
  margin: 0 auto;
}

.title {
  position: absolute;
  bottom: 0px;
  color: white;
  left: 51%;
  transform: translate(-45%, -50%);
  padding: 10px;
}
.title h1 {
  font-size: 70px;
}
.title p {
  font-size: 20px;
  padding-left: 10px;
}

.movie-info {
  display: flex;
  margin-top: -40px;
}

.movie-info .img-container {
  position: relative;
  top: -150px;
  left: 13px;
}

.movie-info .img-container img {
  width: 220px;
}

.movie-data {
  padding: 100px 10px 0 10px;
}

.movie-data p {
  padding: 0 40px;
  font-size: 18px;
  line-height: 24px;
}

.genre {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  width: 220px;
}

.genre span {
  display: inline-block;
  border: 1px solid rgb(202, 202, 202);
  background: whitesmoke;
  padding: 10px;
  border-radius: 20px;
  color: black;
}

.genre span:last-of-type {
  align-self: center;
  margin-left: 60px;
}
footer {
  color: black;
}
footer ul {
  z-index: 1000;
  list-style: none;
  text-align: center;
  padding: 0;
  font-size: 40px;
  color: black;
}
li a i.fa-linkedin {
  color: #2867b2;
}
li a i.fa-linkedin:hover {
  color: #123c6e;
}

li {
  display: inline;
  margin: 10px;
}

a,
a:visited {
  color: black;
}

a:hover {
  color: rgb(122, 121, 121);
}
