#hero {
  text-align: center;

  h1 {
    display: flex;
    gap: 1.25rem;
    text-align: center;
    justify-content: center;
    margin: 0;

    @media screen and (max-width: 1080px) {
      display: inline-block;
    }

    @media screen and (max-width: 920px) {
      font-size: 3rem;
    }

    b {
      display: flex;
      flex-direction: column;
      color: var(--primary);
    }
  }

  h3 {
    @media screen and (max-width: 920px) {
      font-size: 2.5rem;
    }
  }

  .links {
    margin-block: 8rem 12rem;
    display: grid;
    grid-auto-flow: column;
    gap: 3rem;
    justify-content: center;

    @media screen and (max-width: 920px) {
      grid-auto-flow: row;
      margin-block: 2rem 4rem;
      gap: 1.5rem;
    }

    a {
      background-color: var(--background);
      border: 4px solid var(--primary);
      border-radius: var(--medium-border-radius);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.5rem 2.5rem;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      font-size: 2.5rem;

      @media screen and (max-width: 920px) {
        font-size: 2rem;
        padding: 1.5rem 2rem;
      }
    }
  }
}
