html {
  scroll-behavior: smooth;
}

:root {
      --primary-color: #3a0594;
      --secondary-color: #FF0054;
      --tertiary-color: #9c1e65;
      --text-color: white;
      --font-family: 'Trebuchet MS', sans-serif;
      --container-width: 90%;
      --section-padding: 40px 0;
    }

    body {
      font-family: var(--font-family);
      margin: 0;
      background: linear-gradient(to bottom right, var(--primary-color), var(--tertiary-color));
      color: var(--text-color);
      text-align: center;
    }

    .container {
      width: var(--container-width);
      margin: auto;
    }

    #navbar {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: baseline;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      font-weight: bold;
      color: var(--text-color);
      text-decoration: none;
      font-size: 1.5em;
      margin-right: 25px;
      margin-left: 10px;
    }

    .nav-links {
      display: flex;
    }

    .nav-link {
      color: var(--text-color);
      text-decoration: none;
      margin-left: 25px;
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      width: 25px;
      height: 2px;
      background-color: var(--text-color);
      margin-top: 5px;
      transition: 0.4s;
    }

    header {
      height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: var(--section-padding);
    }

    header h1 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .cta-button {
      background-color: var(--secondary-color);
      color: var(--text-color);
      border: none;
      padding: 10px 20px;
      font-size: 1em;
      cursor: pointer;
      border-radius: 5px;
    }
    a.cta-button {
        text-decoration: none;
    }

    .product-descriptions {
      padding: var(--section-padding);
    }

    .feature {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .screenshot {
      flex-grow: 1;
      min-width: 200px;
      max-width: 500px;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      object-fit: cover;
    }

    .placeholder {
      width: 80%;
      color: var(--text-color);
      font-size: 1.2em;
      object-fit: cover;
    }

    .text {
      width: 50%;
      min-width: 300px;
      text-align: justify;
      padding: 20px;
      box-sizing: border-box;
    }

    h3 {
      font-size: 1.2em;
    }
    p {
      font-size: 1em;
    }

    .cta {
      padding: var(--section-padding);
    }

    .cta form {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cta input[type="email"] {
      width: 80%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid var(--secondary-color);
      border-radius: 5px;
    }

    #getWaitlistContainer {
      justify-content: center;
    }

    footer {
      padding: 20px 0;
    }

    .footer-links {
      margin-top: 10px;
    }

    .footer-links a {
      color: var(--text-color);
      text-decoration: none;
      margin: 0 10px;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .nav-links {
        display: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-link {
        margin-right: 20px;
      }

      .hamburger {
        justify-content: flex-end;
        display: block;
        margin-left: auto;
      }
    }

    @media (min-width: 769px) {
      .nav-links {
        display: flex;
      }

      .hamburger {
        display: none;
      }
    }
