    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    body {
      margin: 50px;
      background: #000;
      color: #eee;
      font-family: "Roboto", sans-serif;
    }

    h1,
    h2,
    h3,
    h4 {
      margin-top: 1em;
      margin-bottom: 1em;
      color: #fff;
      font-weight: 500;
    }

    h1 {
      font-size: 48px;
      text-align: center;
    }

    h2 {
      color: #ffb900;
      font-size: 36px;
    }

    h3 {
      font-size: 30px;
    }

    h4 {
      font-size: 24px;
    }

    p {
      margin: 1em 0;
    }

    video {
      width: 100%;
      height: auto;
    }

    .container {
      max-width: 1199px;
      margin-left: auto;
      margin-right: auto;
    }

    .characters-list {
      display: flex;
      margin-bottom: 50px;
      flex-direction: column;
      gap: 50px;
    }

    .characters-list .characters-list-item {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .characters-list .characters-list-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .characters-list .characters-list-item>div {
      flex: 1;
    }

    .cover {
      margin-bottom: 50px;
    }

    .cols-2 {
      display: flex;
      margin-top: 50px;
      margin-bottom: 50px;
      align-items: center;
      gap: 50px;
    }

    .cols-2>div {
      flex: 1;
    }

    .img {
      margin-inline: auto;
    }
