
  .logo {
    background: var(--the-brand-color);
    border-radius: 100px;
    display: block;
    width: 70px;
    height: 70px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: pointer;
    transition: filter 250ms ease-out;
    user-select: none;
    z-index: 3;
  }

  .logo:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  }

  .logo:hover {
    filter: brightness(130%);
    transition: none;
  }

  .logo:focus {
    outline: none;
  }

  .logo--big {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }

  .logo img {
    border-radius: inherit;
    width: 100%;
    height: 100%;
  }

  .logo__eyes {
    width: 25%;
    height: 10%;
    top: 40px;
    position: absolute;
    transform: translateX(-50%);
    top: 48%;
    left: 41%;
    animation: blink 10s infinite;
  }

  .logo__eyes:before {
    content: "";
    background: #F23B39;
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
  }

  .logo__eyes:after {
    content: "";
    background: #F23B39;
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  @keyframes blink {
    0% {
      opacity: 0;
    }

    3% {
      opacity: 0;
    }

    4% {
      opacity: 1;
    }

    5% {
      opacity: 0;
    }

    50% {
      opacity: 0;
    }

    51% {
      opacity: 1;
    }

    52% {
      opacity: 0;
    }

    53% {
      opacity: 1;
    }

    54% {
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }


  .card {
    background: var(--card-background);
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 45%;
    max-width: 565px;
    padding: 15px;
    padding-bottom: 0;
    cursor: pointer;
    transition: background 250ms ease-out;
  }

  .card:hover {
    background: #FFEEAD;
    transition: none;
  }

  .card--green:hover {
    background: #BBFFAD;
  }

  .card:nth-child(3n + 1) {
    transform: rotate(1.5deg);
  }

  .card:nth-child(3n + 2) {
    transform: rotate(-1.5deg);
  }

  .card:nth-child(3n + 3) {
    transform: rotate(0.5deg);
  }

  .card--big {
    width: 100%;
    max-width: 400px;
  }

  .card--big:nth-child(3n + 1) {
    transform: rotate(1deg);
  }

  .card--big, .card--big:nth-child(3n + 2) {
    transform: rotate(-1deg);
  }

  .card__image {
    background: lightgray;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
  }

  .card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
  }

  .card__image img,
  .card__image video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .card__image video {
    background-color: black;
    position: absolute;
    object-fit: cover;
    inset: 0;
    opacity: 0;
    transition: opacity 200ms ease;
    pointer-events: none;
    user-select: none;
  }

  .card:hover video,
  .card:focus-within video {
    opacity: 1;
  }

  .card:hover .card__image-timestamp,
  .card:focus-within .card__image-timestamp {
    opacity: 0;
  }

  .card:hover .card__sound-button,
  .card:focus-within .card__sound-button {
    opacity: 1;
  }

  .card__image-timestamp {
    position: absolute;
    backdrop-filter: blur(3px);
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    padding: 1px 4px 2px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 1);
    transition: opacity 200ms ease;
  }

  .card__sound-button {
    z-index: 5;
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    padding: 5px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 1);
    transition: opacity 200ms ease;
    opacity: 0;
    cursor: pointer;
  }

  .card__sound-button:after {
    content: "";
    inset: -15px;
    position: absolute;
  }

  .card__sound-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  }

  .card__sound-button:active {
    transform: scale(0.95);
    filter: brightness(80%);
  }

  .card__sound-button img:nth-child(1) {
    display: block;
  }

  .card__sound-button img:nth-child(2) {
    display: none;
  }

  .card__sound-button--unmuted img:nth-child(1) {
    display: none;
  }

  .card__sound-button--unmuted img:nth-child(2) {
    display: block;
  }

  .card__title {
    display: flex;
    flex-grow: 1;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 11px;
    margin-bottom: 13px;
  }

  .card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
  }

  .card__link:focus {
    outline: none;
  }

  @media (max-width: 760px) {
    .card {
      width: 100%;
      max-width: 300px;
    }

    .card--big {
      max-width: 600px;
    }
  }

