.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;

  .title {
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;

    h2 {
      line-height: 2.5rem;
      font-size: 2rem;
      font-weight: 600;
      color: var(--gray-solid);
    }

    h1 {
      line-height: 3rem;
      letter-spacing: -1.25px;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gray-solid);
    }
  }

  .description {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;

    p {
      font-weight: 300;
      color: var(--gray-solid);
    }

    div {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;

      a {
        width: 100%;
        color: var(--gray-solid);
        font-weight: 500;
        letter-spacing: -0.5px;
        opacity: 0.5;
        transition: all 0.5s ease-in-out;

        &:hover {
          opacity: 1;
          color: var(--red-primary);
        }
      }
    }
  }

  .stacks {
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;

    button {
      &:hover {
        transform: scale(1.025) !important;
      }
    }

    h2 {
      line-height: 2.5rem;
      font-size: 2rem;
      font-weight: 600;
      color: var(--gray-solid);
    }

    h1 {
      line-height: 3rem;
      letter-spacing: -1.25px;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gray-solid);
    }

    div {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;

      @media (max-width: 400px) {
        flex-direction: column;
      }

      a {
        width: 100%;
      }
    }
  }

  .more {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    max-width: 450px;
    flex-direction: column;

    p {
      font-size: 0.85rem;
      letter-spacing: -0.5px;
      color: var(--gray-solid);
    }
  }
}
