  html {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  body {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    color: lightgray;
    background: black;
    font-family: "Raleway", sans-serif;
    line-height: 1.25;
    margin: 0;
    margin-bottom: 25svh;
    max-width: 95svw;
    width: 700px;
    overflow-x: hidden;
  }

  h1,
  h2,
  b {
    filter: drop-shadow(-2px -1px 10px #ffffff6e);
  }

  h1,
  h2,
  p,
  img,
  video,
  iframe {
    margin: 0;
  }

  h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 45px;
  }

  h2 {
    margin-top: 42px;
  }

  a {
    color: aquamarine;
  }

  p {
    font-weight: 400;
  }

  button {
    background-color: #444;
    border: none;
    border-radius: 2px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
  }

  button a {
    text-decoration: none;
  }

  img,
  video,
  iframe {
    width: 100%;
    border-radius: 10px;
  }

  .flex-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;

    width: 100%;
    overflow: hidden;
  }

  .singlevideo {
    max-width: 300px;
    width: 100%;
  }

  iframe {
    width: 100%;
    aspect-ratio: 1.75;
  }

  .card {
    display: flex;
    gap: 13px;
    margin-top: 75px;
    /* flex-wrap: wrap; */

    background: #2b2b2b;
    padding: 16px;
    margin: 12px;
    border-radius: 12px;
  }

  .card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
  }

  .card img {
    object-fit: cover;
    max-width: 150px;
    aspect-ratio: 1;
    max-height: 150px;
    width: 100%;
    flex-shrink: 2;
  }

  .card h2 {
    margin: 0;
  }

  .card p {
    max-width: 480px;
  }

  @media only screen and (max-width: 600px) {
    .flex-container {
      flex-wrap: wrap;
    }

    body {
      width: 100%;
    }

    body>p,
    body>h1,
    body>h2 {
      margin: 0 12px;
    }

    h1 {
      font-size: 8vw;
    }

    .card {
      flex-wrap: wrap;
    }
  }