* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        height: 100%;
        overflow: hidden;
      }

      body {
        font-family: 'Ranade', sans-serif;
        background-image: url('../img/backgroundIllu.jpg');
        background-color: #FCFDFB;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        overflow: hidden;
        position: relative;
        display: grid;
        margin: 0 2rem 2rem;
        grid-template-rows: 0.3fr auto 0.8fr 0.4fr 2rem;
        grid-template-areas: 
          "header"
          "tagline"
          "description"
          "main"
          "footer";
      }

      .logo {
        grid-area: header;
        justify-self: center;
        align-self: start;
        margin-top: 28px;
        width: 144px;
        height: auto;
        z-index: 10;
        position: relative;
      }

      .tagline {
        grid-area: tagline;
        justify-self: center;
        align-self: start;
        margin-top: 24px;
        font-family: 'Ranade', sans-serif;
        font-weight: 400;
        font-size: 2.5rem;
        color: #252929;
        line-height: 1.2;
        text-align: center;
        z-index: 10;
        position: relative;
      }

      .description {
        grid-area: description;
        justify-self: center;
        align-self: center;
        font-family: 'Archivo', sans-serif;
        font-weight: 300;
        font-size: 2.5rem;
        color: #252929;
        line-height: 1.3;
        max-width: 40rem;
        text-align: center;
        z-index: 10;
        position: relative;
      }

      .coming-soon {
        grid-area: main;
        justify-self: center;
        align-self: center;
        font-family: 'Archivo', sans-serif;
        font-weight: 100;
        font-size: 1.6rem;
        color: #356A6A;
        line-height: 1.1;
        text-align: center;
        z-index: 10;
        position: relative;
      }

      .footer {
        grid-area: footer;
        justify-self: center;
        align-self: center;
        z-index: 10;
        position: relative;
        height: 3rem;
      }

      .contact a {
        font-family: 'Ranade', sans-serif;
        font-weight: 300;
        font-size: 0.875rem;
        color: #252929;
        text-decoration: none;
      }

      /* Responsive design */
      @media (max-width: 768px) {
        body {
          grid-template-rows: 80px auto 1fr 1fr 1.5rem;
          margin: 0 1rem;
        }
        
        .logo {
          width: 80px;
          margin-top: 20px;
        }

        .tagline {
          font-size: 1.8rem;
          margin-top: 16px;
        }
        
        .coming-soon {
          font-size: 1rem;
        }
        
        .description {
          font-size: 1.4rem;
        }
      }

      @media (max-width: 480px) {
        body {
          grid-template-rows: 0.3fr auto 2fr 0.6fr 1rem;
          margin: 0 2rem 1rem;
        }
        
        .logo {
          width: 70px;
          margin-top: 15px;
        }

        .tagline {
          font-size: 1.5rem;
          margin-top: 12px;
        }

        .description {
          font-size: 1.8rem;
          max-width: 24rem;
        }
        
        .coming-soon {
          font-size: 0.8rem;
        }
      }

      @media (max-height: 600px) {
        body {
          grid-template-rows: 0.6fr auto 2fr 1fr 1rem;
        }
        
        .logo {
          width: 70px;
          margin-top: 10px;
        }

        .tagline {
          font-size: 1.4rem;
          margin-top: 8px;
        }

        .description {
          font-size: 1.4rem;
          max-width: 23rem;
        }
        
        .coming-soon {
          font-size: 1.1rem;
        }
        
      }


