:root {
  --dark : #22071e;
  --darker : #59114d;
  --light : #dcd7d0;
  --lightshade : #eeebe8;
  --lighter : #fffbfe;
  --lightershade : #ffebfa;
  --accent : #40e0d0;
  --accentshade : #1a9e91;
  --error : #ffd700;
  --footer : #1e1e1e;
}



html {
  font-size: 2svh;
}

body {
  background-color: var(--lighter);
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
}

#headerBoxForm {
  width: 100svw;
  height: 12svh;
  display: grid;
  grid-template-columns: 6svw 88svw 6svw;
  grid-template-rows: 2svh 4svh 4svh 2svh;
}

#preHeaderForm {
  grid-area: 1 / 1 / 3 / 4;
  background-color: var(--lighter);
}

#mainHeaderForm {
  grid-area: 2 / 2 / 4 / 3;
  background-color: var(--accent);
  z-index: 1;
  border-radius: 50px;
  display: grid;
  grid-template-rows: 1svh auto 1svh;
  grid-template-columns: 4.5svw auto auto 4.5svw;
}
    #logoForm {
      grid-area: 2 / 2 / 3 / 3;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: left;
    }
      #logoType {
        font-size: 2rem;
        font-weight: 600;
        color: var(--lighter);
        font-family: "Montserrat", serif;
      }
    #menu {
      grid-area: 2 / 3 / 3 / 4;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: right;
    }
      #menuBurger {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 600;
        color: var(--lighter);
      }

#connectorHeaderForm {
  grid-area: 3 / 1 / 5 / 5;
  background-color: var(--dark);
}


#menuForm {
  width: 100svw;
  height: 100%;
  grid-template-columns: 6svw 88svw 6svw;
  grid-template-rows: 2svh 4svh 4svh 2svh 35svh auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
    #menuClose {
      grid-area: 2 / 3 / 3 / 4;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: right;
    }
        #cross {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.8rem;
          font-weight: 600;
          color: var(--lighter);
        }

#connectorHeaderFormMenu {
  grid-area: 3 / 1 / 5 / 5;
  background-color: var(--lighter);
}

#menuBody {
  grid-area: 5 / 1 / 6 / 5;
  display: grid;
  height: 35svh;
  grid-template-rows: 4svh 9svh 9svh 9svh 4svh;
  grid-template-columns: 12svw 76svw 12svw;
  border-radius: 0 0 25px 25px;
  background-color: var(--lighter);
  z-index: 10;
}
    #navigation1 {
      grid-area: 2 / 2 / 3 / 3;
      align-items: center;
      font-size: 2rem;
      line-height: 1.1;
      font-weight: 800;
      color: var(--dark);
      font-family: "Montserrat", serif;
      text-align: center;
    }
    #navigation2 {
      grid-area: 3 / 2 / 4 / 3;
      align-items: center;
      font-size: 2rem;
      line-height: 1.1;
      font-weight: 800;
      color: var(--dark);
      font-family: "Montserrat", serif;
      text-align: center;
    }
    #navigation3 {
      grid-area: 4 / 2 / 5 / 3;
      align-items: center;
      font-size: 2rem;
      line-height: 1.1;
      font-weight: 800;
      color: var(--dark);
      font-family: "Montserrat", serif;
      text-align: center;
    }
    #filler {
    grid-area: 5 / 1 / 7 / 5;
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
  } 

#page {
  width: 100svw;
  height: auto;
  background: linear-gradient(0deg, var(--darker), var(--dark));
  display: grid;
  grid-template-rows: 6svh auto 6svh auto 6svh;
  grid-template-columns: 6svw 6svw 76svw 6svw 6svw;
}
    #pageTitle {
      grid-area: 2 / 3 / 3 / 4;
      font-size: 2.75rem;
      line-height: 1.1;
      font-weight: 800;
      color: var(--lighter);
      font-family: "Montserrat", serif;
    }
    #pageText {
      grid-area: 4 / 3 / 5 / 4;
      font-size: 1rem;
    }

    h1, h2 {
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
    }

    h1 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    h2 {
      font-size: 1.25rem;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    ul {
      color: var(--lighter);
      font-family: "Montserrat", serif;
      padding-left: 20px;
    }

    a {
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-decoration: none;
    }

    a:hover {
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-decoration: underline;
    }
    p {
      font-size: 1rem;
      text-align: left;
      color: var(--lighter);
      font-family: "Montserrat", serif;
    }







#footer {
  width: 100svw;
  height: auto;
  background: linear-gradient(45deg, var(--footer), var(--dark));
  display: grid;
  grid-template-rows: 6svh auto 2svh auto 3svh auto 1svh auto 6svh;
  grid-template-columns: 6svw 48svw 12svw 28svw 6svw;
}
    #supportTitle {
      grid-area: 2 / 2 / 3 / 3;
      font-size: 1rem;
      font-weight: 600;
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
    }
    #supportSubTitle {
      grid-area: 4 / 2 / 5 / 3;
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
    }
    #socialHook {
      grid-area: 6 / 2 / 7 / 3;
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
    }
    #socialIconsBox {
      grid-area: 8 / 2 / 9 / 3;
      display: grid;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
      #instagram {
        grid-area: 1 / 1 / 2 / 2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 600;
        color: var(--lighter);
        justify-self: left;
      }
      #tiktok {
        grid-area: 1 / 2 / 2 / 3;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 600;
        color: var(--lighter);
        justify-self: left;
      }
    #boringTitle {
      grid-area: 2 / 4 / 3 / 5;
      font-size: 1rem;
      font-weight: 600;
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
    }
    #boringList {
      grid-area: 4 / 4 / 5 / 5;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: left;
      gap: 1svh;
    }
    #privacyPolicy {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--lighter);
      font-family: "Montserrat", serif;
      text-align: left;
      text-decoration: none;
    }