
#home-page #flash_messages {
  padding: 0 4rem;
  margin: 0;
  text-align: unset;
}

#home-page #announcements {
  width: 100%;
  background-color: var(--logo-color);
  padding-top: 1rem;
}

#home-page #announcements h3 {
  width: 60rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0 4rem;
  font-size: 2rem;
  color: white;
}

#home-page #announcements p {
  width: 60rem;
  padding: 0 4rem;
  font-size: 1.25rem;
  color: white;
}

#home-page #announcements p span {
  margin-left: 0.5rem;
}

#home-page {
  width: 100%;
  background-image: linear-gradient(whitesmoke 5%, lightblue); /* 40%, var(--logo-color) 80%); */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow :auto;
}

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

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

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

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

#home-page h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  text-align: left;
  text-decoration: underline;
  padding: 0 4rem;
}

#home-page ol {
  list-style-type: decimal;
  font-size: 1rem;
  line-height: 1.4rem;
  padding-left: 0;
  margin-left: 25px;
}

#home-page #logo-content {
  display: block;
  background-image: url("/assets/logo/logo-aef985a0.png");
  background-position: top;
  background-repeat: no-repeat;
}

#home-page #logo-content p {
  width: 65%;
  color: white;
  padding: 0.5rem 4rem 0.5rem;
  text-align: left;
}

.what {
  font: 4rem sans-serif;
  font-weight: bold;
}
.how {
  font-size: 2rem;
  font-weight: normal;
  line-height: normal;
}

.slogan {
  font-size: 1.25rem;
}

#home-page noscript {
  color: red;
  font-size: larger;
}

#home-page p {
  color: black;
  padding: 0.5rem 0.5rem 0.5rem 0;
  margin: 0;
}

#home-page noscript {
    color: #00a1cb;
}

@media screen and (max-width: 120rem) {
  /* Desktop (1920) -- since we originally coded for this, there should be nothing to do here. */

  #home-page .mobile  { display: none; }
  #home-page .tablet  { display: none; }
  #home-page .laptop  { display: none; }
  #home-page .desktop { display: block; }

  #home-page .about {
    width: 50%;
    margin-left: 4rem;
    margin-right: auto;
    padding: 1rem;
  }

  #home-page #welcome {
    width: 50%;
    margin-left: 4rem;
    margin-right: auto;
    padding: 1rem;
  }

  #home-page #welcome p {
    font-size: 2rem;
    text-align: center;
  }

  #home-page #posse-definition {
    margin-left: 4rem;
    margin-right: auto;
    padding: 1rem;
  }
}

@media screen and (max-width: 85.375rem) {
  /* Laptop (1366) --  */
  #home-page main {
    /*background-image: linear-gradient(whitesmoke 5%, red);*/
    width: 100%;
  }

  #home-page header {
    width: 100%;
    padding: 0 4rem;
  }

  #home-page h1 {
    width: 216px;
  }

  #home-page .mobile  { display: none; }
  #home-page .tablet  { display: none; }
  #home-page .laptop  { display: block; }
  #home-page .desktop { display: none; }
}

/* iPad 7th generation, landscape mode (1080x634) */
@media screen and (max-width: 67.5rem) {
  #home-page .mobile  { display: none; }
  #home-page .tablet  { display: block; }
  #home-page .laptop  { display: none; }
  #home-page .desktop { display: none; }
}

/* iPad 10th generation, portrait mode (960x1295 as reported by window.innerWidth .innerHeight -- 820x1106) */
@media screen and (max-width: 60rem) {
  #home-page main {
    width: 100%;
  }
}

@media screen and (max-width: 50.625rem) {
  /* We are coding to fit up to the iPad Pro (6th gen 11")
  Logical Width:	834 pixels
  Logical Height:	1194 pixels */
  #home-page main {
    /*background-image: linear-gradient(whitesmoke 5%, black);*/
    width: 100%;
  }

  #home-page .mobile  { display: none; }
  #home-page .tablet  { display: block; }
  #home-page .laptop  { display: none; }
  #home-page .desktop { display: none; }
}

/* iPad Mini 4th generation, portrait mode (768x1024) */
@media screen and (max-width: 40rem) {
  #home-page main {
    width: 100%;
  }
}

@media screen and (max-width: 26.875rem) {
  /* Mobile (430) -- the smallest size that we code for. */
  /* We are coding to fit the iPhone 14 Pro Max
  Logical Width:	430 pixels
  Logical Height:	932 pixels */
  #home-page {
    /*background-image: linear-gradient(whitesmoke 5%, blue);*/
  }

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

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

  #home-page h2 {
    text-align: center;
    margin: 0;
  }

  #home-page #announcements {
    padding-left: 0.5rem;
  }

  #home-page #announcements h3 {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding: 0;
  }

  #home-page header {
    width: 100%; /*26.875rem;*/
    padding: 0;
  }

  #home-page .mobile  { display: block; }
  #home-page .tablet  { display: none; }
  #home-page .laptop  { display: none; }
  #home-page .desktop { display: none; }

  #home-page #logo-content {
    text-align: center;
    vertical-align: bottom;
    font-size: 1.25rem;
    font-weight: bold;
    color: #226;
  }

  #home-page #logo-content p {
    width: 100%;
    margin-left: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: left;
  }

  .what {
    font-size: 2rem;
    font-weight: bold;
  }

  .how {
    font-size: 1.3rem;
    font-weight: normal;
  }

  .slogan {
    font-size: 0.875rem;
  }

  #home-page #flash_messages {
    width: 100%;
    margin-left: 0;
    padding-left: 0.5rem;
  }

  #home-page .about {
    width: 100%;
    margin: 0;
  }

  #home-page #welcome {
    width: 100%;
    margin-left: 0;
  }

  #home-page #welcome p {
    font-size: 1.25rem;
  }

  #home-page #posse-definition {
    margin: 0;
  }

  #home-page #announcements p {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  #announcements span {
    margin-left: auto;
    margin-right: auto;
  }

  #announcements a {
    margin-top: 1rem;
  }

  #home-page footer a {
    display: block;
    text-decoration: none;
  }
}
