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

body * {
  font-family: "Inter", sans-serif;
}

body {
  background-image: url(./images/Capa.png);
  background-position: top center;
  background-size: 100% auto;
  background-color: #121214;
  background-repeat: no-repeat;
}

header {
  padding-top: 32px;
  height: calc(120px + 32px);
}

header div {
  width: 120px;
  margin: auto;
  background-image: linear-gradient(
    90deg,
    #646464 0%,
    #ababab 50%,
    #646464 100%
  );
  border-radius: 50%;
  display: flex;
  padding: 4px;
  transition: transform 0.3s;
  animation: top 0.5s 2s backwards;
}

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

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

main * {
  line-height: 160%;
}

main {
  max-width: 580px;
  width: 90%;
  margin: 32px auto;
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

main section {
  animation: bot 0.7s backwards;
}

main section:nth-child(1) {
  animation-delay: 0.1s;
}

main section:nth-child(2) {
  animation-delay: 0.4s;
}

main section:nth-child(3) {
  animation-delay: 0.5s;
}

section {
  color: white;
  background-image: linear-gradient(
    90deg,
    #4901a6 0%,
    #69439a 50.52%,
    #4901a6 100%
  );
  padding-top: 4px;
  border-radius: 10px;
}

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

section h2 {
  letter-spacing: -0.47px;
}

section p {
  letter-spacing: -0.18px;
  color: #a1a1aa;
}

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

section ul li {
  transition: transform 3s;
}

section ul li:hover {
  transform: scale(1.1);
}
.films-list img {
  width: 100px;
  border-radius: 8px;
  border: 1px solid #443e54;
}

.composers-liszt img {
  border-radius: 50%;
  width: 100px;
  border: 2px solid #443e54;
}

.contact-list a {
  display: flex;
}

section a#email {
  color: #a1a1aa;
  cursor: alias;
}

@media screen and (max-width: 480px) {
  .composers-liszt,
  .films-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-list {
    display: block;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bot {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
