
/* This sets up bylawses webpage layout */


/* --------------------------------------------- */
/* Display based on screen sizes                 */
/* --------------------------------------------- */

/* Default  >1400px  */
.grid-container {
  display: grid;
  max-width:100%;
  grid-template-areas:
    'header menu menu menu menu menu'
    '. . bylaws_info1 bylaws_info1 . .'
    '. . bylaws_info2 bylaws_info2 . .'
    'footer footer footer footer footer footer';
    grid-gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background: var(--main-bodybkgrnd-color);
}


/* Phone */
@media only screen and (max-width: 600px) {
.grid-container {
   display: grid;
   max-width:100%;
   grid-template-areas:
    'header'
    'menu'
    'bylaws_info1'
    'bylaws_info2'
    'footer';
    grid-gap: 0;
    grid-template-columns: auto;
    background: var(--main-bodybkgrnd-color);
}
}

/* Intermediate sizes */
@media only screen and (min-width: 601px) and (max-width: 1050px)   {
.grid-container {
    display: grid;
    max-width:100%;
    grid-template-areas:
    'header menu menu menu'
    '. bylaws_info1 bylaws_info1 . '
    'bylaws_info2 bylaws_info2 bylaws_info2 bylaws_info2'
    'footer footer footer footer';
    grid-gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: var(--main-bodybkgrnd-color);
}
}


@media only screen and (min-width: 1051px) and (max-width: 1400px)  {
.grid-container {
  display: grid;
  max-width:100%;
  grid-template-areas:
    'header menu menu menu menu menu'
    '. . bylaws_info1 bylaws_info1 . .'
    '.bylaws_info2 bylaws_info2 bylaws_info2 bylaws_info2 . '
    'footer footer footer footer footer footer';
    grid-gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    background: var(--main-bodybkgrnd-color);
}
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

h2 {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

h3 {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

/* --------------------------------------- */
/* Info 1                                  */
/* --------------------------------------- */
.bylaws_info1 {
  grid-area: bylaws_info1;
  padding: 10px;
  border: 3px;
  border-radius: var(--main-grid-border-radius);
  margin: 5px;
  background-color: tan;
}




/* --------------------------------------- */
/* Info 2                                  */
/* --------------------------------------- */
.bylaws_info2 {
  grid-area: bylaws_info2;
  align-items: center;
  padding: 10px;
  border: 3px;
  border-radius: var(--main-grid-border-radius);
  margin: 5px;
  background: linear-gradient(to right, tan, 20%, gray);
}

.bylaws_info2 iframe {
  width: 95%;
  display: inline-block;
  float: center;
  border: 5px;
  align-items: center;
  height: 600px;
  scrolling: no;
}

.bylaws_info2 img {
    width: 80%;
    max-width: 250px;
}



