#how-to .container {
  display: grid;
  grid-template-areas:
    "hint hint hint hint"
    "browser browser app app";

  max-width: 600px;
  margin: 0 auto;
}

#how-to .card {
  background: var(--white-ter);
  justify-self: center;
  max-width: 400px;
}

#how-to .card-content {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

#how-to .title {
  color: var(--black-bis);
  font-family: "Gotham Bold", sans-serif;
  font-size: 28px;
  margin-bottom: 0px;
}

#how-to .text {
  color: var(--black-bis);
  font-family: "Gotham Book Regular", sans-serif;
  font-size: 12px;
}

#how-to .video {
  border-radius: 1.5rem;
}

#how-to .video:first-of-type {
  grid-area: browser;
}

#how-to .hint {
  grid-area: hint;
  margin: 0 1.5rem;
  margin-top: 3rem;
}

#how-to .video:last-of-type {
  grid-area: app;
}

@media only screen and (min-width: 768px) {
  #how-to .container {
    align-items: stretch;
    display: flex;
    justify-content: center;
    max-width: 1200px;
  }

  #how-to .hint {
    margin: 0;
    max-width: 244px;
  }

  #how-to .hint .card-content {
    height: 100%;
  }

  #how-to .hint .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #how-to .video {
    max-width: 200px;
  }
}

@media only screen and (min-width: 1024px) {
  #how-to .hint {
    max-width: 600px;
  }

  #how-to .hint .title {
    font-size: 50px;
  }

  #how-to .hint .text {
    font-size: 20px;
  }

  #how-to .hint .content {
    gap: 32px;
  }

  #how-to .video {
    max-width: 250px;
  }
}
