/* GENERAL */
* {
  list-style: none;
  text-decoration: none;
  color: white;
  flex-wrap: wrap;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: -webkit-linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  background: linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
}

/* CONTENT */

.section-content {
  padding: 5px;
}

.section-content .container img {
  border-radius: 14px 14px 14px 14px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.link-poster {
  display: flex;
}

.title {
  display: flex;
  justify-content: center;
  border-radius: 0 0 20px 20px;
  font-size: 20px;
  height: 50px;
  width: 215px;
  padding: 5px 0 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  flex-wrap: wrap;
}

img {
  transition: 200ms ease-out;
}

img:hover {
  transform: scale(0.97);
  transition-duration: 0.3s;
}

/* ARROW UP BOUTON */
.arrow-up {
  height: 80px;
  width: 80px;
  background: #333;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}

.arrow-up i {
  text-align: center;
  color: white;
  font-size: 20px;
}

@media (max-width: 768px) {
  .arrow-up {
    height: 60px;
    width: 60px;
  }
}
