#call-to-action {
  font-family: 'Gloock', sans-serif;
  background-color: var(--purple-main);
  color: white;
  min-height: unset;
  text-align: center;
  margin-bottom: 3.5rem;
  
  .content {
    display: grid;
    align-items: center;
    align-content: center;
    gap: 3rem;
    padding-block: 5rem;
    justify-content: center;
    justify-items: center;

    a {
      display: flex;
      text-decoration: none;
    }
  }

  .title {
    font-size: 3.5rem;
    font-weight: regular;
    margin: 0;

    @media (max-width: 1024px) {
      font-size: 2.5rem;
    }
  }

  .title p {
    margin: 0;
  }

  .title .highlight {
    font-family: 'EB Garamond', serif;
    font-weight: 100;
    font-style: italic;
  }

  button {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    padding: 1rem 3rem;
    border-radius: 100vmax;
    border: none;
    color: black;
  }
}