.card {
    --text-color: #fff;
    --text-color-2: #F3F8FA;
    --bg-color: #0F0620;
    --border-color: #381D6A;

    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 644px;
    padding: 32px;
    border-radius: 24px;
    color: var(--text-color);
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    font: 100%/1.6 'Open Sans', sans-serif;
 /*center the box*/
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
  }

  .card__title {
    margin-block: 0;
    font-family: 'Sora', sans-serif;
    font-size: 33px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
  }

  mark {
    background: linear-gradient(270deg, #D42F4A 0%, #F82BBF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #0000;
    -webkit-box-decoration-break: clone;
  }

  .card__description {
    color: var(--text-color-2);
    line-height: 24px;
    margin-block: 0;
  }

  .card__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
  }

  .card__button {
    display: block;
    padding: 16px 32px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    font-weight: 600;
    line-height: 16px;
  }

  .media-object {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 4px;
    gap: 24px;
  }

  .media-object__button {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 16px 38px 14px;
    border-radius: 28px;
    background: linear-gradient(270deg, #E8488A 0%, #D5304B 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
  }

  .source-link {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: fit-content;
    box-sizing: border-box;
    font-size: 16px;
    display: flex;
    padding: 0.75em 1em 0.75em 0.75em;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border-radius: 128px;
    background: linear-gradient(270deg, #AFE8EF 0%, #E7E1FA 100%);
    color: #000;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
  }

  .source-link svg {
    display: block;
    width: 1.5em;
    height: 1.5em;
    border-radius: 0.25em;
  }

  .source-link.source-link--second {
    right: auto;
    left: 32px;
  }

  html {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  @media (prefers-reduced-motion) {
    html {
      scroll-behavior: none;
    }
  }

  html *,
  html *::after,
  html *::before {
    box-sizing: inherit;
  }

  body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    background-image: url("https://us-east-1.tixte.net/uploads/img.jgamingz.dev/bg.png");
    font: 100%/1.6 'Open Sans', sans-serif;
  }