
/* Robs‘s CSS DOCUMENT */

body    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      background-color: #ffffff; /*#E2E2E2*/

    }

    body, html {
      height: 100%;
      background-color: #ffffff; /*#E2E2E2*/
    }

    .container {
      display: flex;
      flex-direction: column;
      height: 100dvh;
    }

    .header {
      display: flex;
      align-items: center;
      padding: 1rem;
    }

    .logo {
      height: 60px;
      width: auto;
    }

    .content {
      flex: 1;
      display: flex;
      flex-direction: column;
      height: 100dvh;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }

    .content-area {
      flex: 1;
      overflow-y: auto;
    }  

    .text {
      max-width: 600px;
      font-size: 2rem;
      text-align: left;
      font-family: Apercu Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
      color: #2D2D2B;
    }

    @media (max-width: 600px) {
      .text {
        font-size: 1.1rem;
      }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
      .text {
        font-size: 1.5rem;
      }
    }

    .bubble-buttons {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
      padding: 2rem;
      box-sizing: border-box;
}

    .bubble-button {
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 16px;
      font-family: sans-serif;
      display: inline-block;
      transition: opacity 0.3s ease;
      color: #000;
      max-width: 100%;
}

    .bubble-button:hover {
      opacity: 0.8;
}

    .bubble-button.green {
      background-color: #b5f5c6; /* soft mint green */
}

    .bubble-button.blue {
      background-color: #d2e3fc; /* soft periwinkle blue */
}