
#plain-page {
  background-image: linear-gradient(whitesmoke 5%, lightblue);
  display:flex;
  flex-direction:column;
  overflow :auto;
}

#plain-page header > h1 > a {
  text-decoration: none; color: var(--logo-color);
}

#plain-page main {
  text-align: left;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem;
}

#plain-page header {
  display: flex;
  position: relative;
  background-color: whitesmoke;
  padding: 0 4rem;
}

#plain-page h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  position: relative;
  text-align: left;
  color: var(--logo-color);
  margin: 0 auto;
}

#plain-page h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--logo-color);
  margin: 0 0 0.5rem 0;
  padding: 0;
}

#plain-page p {
  color: black;
  font-size: smaller;
  text-align: center;
  width: 35%;
  margin: 1rem auto 1rem auto;
}

#plain-page signup {

}

#plain-page header > nav {
  display: none;
}

#plain-page #spacer {
  flex-grow: unset;
}

#plain-page signup a:link    { text-decoration: none; color: blue; }
#plain-page signup a:visited { text-decoration: none; color: blue; }
#plain-page signup a:hover,
#plain-page signup a:focus   { text-decoration: none; color: blue; }
#plain-page signup a:active  { text-decoration: none; color: blue; }

@media screen and (max-width: 46rem) {
  #plain-page {
    max-width: 100%;
  }

  #plain-page main {
    width: 100%;
  }

  #plain-page nav {
    display: unset;
  }
}



/* iPhone 13 Pro Max 430*/
@media screen and (max-width: 26.875rem) {
  #plain-page main {
    width: 100%;
  }

  #plain-page header > nav {
    display: unset;
  }

  #plain-page h1 {
    width: 202px;
    padding-left: 0.5rem;
  }

  #plain-page p {
    width: 100%;
  }

  #plain-page h2 {
    font-size: 1.4rem;
    margin: 0;
  }
}

/* iPhone 11 Pro 375 */
@media screen and (max-width: 23.4375rem) {
  #plain-page main {
    width: 100%;
  }
}
