* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('./assets/bg.avif');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #56667f;
}

body * {
  font-family: 'Raleway', sans-serif;
  line-height: 160%;
}

header {
  padding-top: 32px;
  margin-bottom: 32px;
}

header div {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-image: linear-gradient(
    45deg,
    rgb(186, 85, 48) 25%,
    rgb(202, 174, 122) 50.52%,
    rgb(177, 70, 58) 100%,
    rgb(231, 85, 109) 98%
  );
  display: flex;
  padding: 4px;
  margin: auto;

  transition: transform 0.3s;
}

header div img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

header div:hover {
  transform: scale(1.1);
}

main {
  max-width: 580px;
  width: 90%;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section {
  background-image: linear-gradient(
    95deg,
    rgb(186, 85, 48) 25%,
    rgb(220, 107, 72) 50.52%,
    rgb(207, 140, 133) 100%,
    rgb(231, 130, 147) 98%
  );
  border-radius: 10px;
  padding-top: 4px;
}

section div {
  background-color: #132034;
  padding: 32px;
  padding-top: 24px;
  border-radius: 8px;
}

h2 {
  letter-spacing: -0.47px;
  color: #ce9790;
  font-size: 24px;
}

p {
  font-size: 16px;
  letter-spacing: -0.18px;
  color: #a0a2ac;
}

section ul {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
  gap: 16px;
  list-style: none;
}

section ul li {
  transition: transform 0.3s;
}

section ul li:hover {
  transform: scale(1.2);
}

.series-list img {
  width: 95px;
  border-radius: 8px;
}

.streaming-list img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: solid 1px #e4e1eb;
}

header div {
  animation: fromTop 0.5s 0.2s backwards;
}

@keyframes fromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

main section {
  animation: fromRight 0.3s backwards;
}

main section:nth-child(1) {
  animation-delay: 0s;
}
main section:nth-child(2) {
  animation-delay: 0.3s;
}
main section:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
