﻿      body {
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: #007aa3;
        font-family: verdana, sans-serif;
        -webkit-font-smoothing: antialiased;
        color: White;
      }

      .splash-container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 1rem;
      }

      .main-content {
        flex-grow: 0.9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .logo-container {
        margin-bottom: 1.5rem;
        max-width: 20rem;
        width: 100%;
      }

      .logo-img {
        margin: 0 auto;
        width: auto;
        height: auto;
        max-height: 8rem;
        margin-bottom: 0.5rem;
      }

      .button-group {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
      }

      .heading-1 {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 0.25rem;
      }

      .heading-2 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 3rem;
      }

    

      .lang-button {
        padding: 0.75rem 2rem;
        background-color: #28904b;
        color: white;
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -2px rgba(0, 0, 0, 0.1);
        transition: all 0.15s ease-in-out;
        border: none;
        cursor: pointer;
        width: 70vw;
      }



      @media only screen and (min-width: 640px) {

             .splash-container {
        padding: 0px;
      }


        .button-group {
          flex-direction: row;
          gap: 4rem;
        }
    

      .lang-button {
       
        width: auto;
      }

      .lang-button:hover {
        background-color: #004d2e;
        transform: scale(1.03);
      }

      .lang-button:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(0, 105, 62, 0.5);
      }

      footer {
        text-align: center;
        padding-bottom: 2rem;
        padding-top: 1rem;
      }

      .heading-1 {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 0.25rem;
      }

      .heading-2 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 3rem;
      }
    }

      @media (min-width: 768px) {
        .heading-1 {
          font-size: 2.2rem;
        }

        .heading-2 {
          font-size: 1.5rem;
        }
      }

      .footer-text {
        font-size: 0.875rem;
        font-weight: 200;
        margin-bottom: 0.25rem;
        text-align: center
      }

      @media (min-width: 768px) {
        .footer-text {
          font-size: 1rem;
        }
      }