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

ul {
  list-style: none;
}

body {
  background-image: url('https://64.media.tumblr.com/d06461a5d350b828963a83235486d7e8/93171773b514fabc-9f/s500x750/a8f33fc073e0e5e26950e242966a22641414e916.gif');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #121214;
}

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

header {
  padding-top: 32px;
}

header div {
  width: 120px;
  margin: auto;
  background-image: linear-gradient(
    90deg,
    #9572fc 0%,
    #43e7ad 50.52%,
    #e2d45c 100%
  );
  border-radius: 50%;
  display: flex;
  padding: 4px;
  transition: transform 0.2s;
}

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

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

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

section {
  color: #fff;
  background-image: linear-gradient(
    90deg,
    #9572fc 0%,
    #43e7ad 50.52%,
    #e2d45c 100%
  );
  padding-top: 4px;
  border-radius: 8px;
}

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

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

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

section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.game-list img {
  border-radius: 8px;
  width: 90px;
  transition: transform 0.2s;
}

.game-list img:hover {
  transform: scale(1.1);
}

.channel-list img {
  border-radius: 50%;
  width: 70px;
  border: 1px solid #443e54;
  transition: transform 0.2s;
}

.channel-list img:hover {
  transform: scale(1.1);
}

.social-list svg {
  transition: transform .2s;
}

.social-list svg:hover {
  transform: scale(1.3);
}

header div {
  animation: fromTop .6s .2s backwards;
}

main section {
  animation: fromBottom .6s backwards;
}

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

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

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

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

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

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

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