html, body{
  margin:0;
  padding:0;
  /*border: double 4px black;*/
  background-color: wborder-bhite;
  font-family: 'Titillium Web', sans-serif;
  font-size: 105%;
  /* COOL, but–  height:100%;*/
  }

* {
    box-sizing: border-box;
  }

h1, h2, h3{
  color: #28a0bd;
  width:100%;/* although this is the default width, I had to declare it or my text-align wouldn't work(!) */
  padding:0;
  margin:0;
  /*border:dashed 2px yellow;*/
  }
h1{
  font-family: 'Merriweather', serif;
  color: white; 
  /*background-color: #28a0bd;*/
  margin: 0 auto;
  font-size: 2.35em;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1em;
}
h2{
  font-family: 'Arvo', serif;
  text-transform: uppercase;
  font-size: 1.6em;
  text-align: center;
  margin: .65em 0 0 0;
  padding:4px 0 0 0;
  font-weight:500;
}
h3{
  font-family: 'Arvo', serif;
  font-size: 1.2em;
  color: white; 
  margin-bottom: .5em;
  /*One em becomes the value of the parent-tag's font. 
  Since here h2 is 16 px, the margin is 8px. Interesting!*/
  }

p{
  text-align: justify;
  line-height: 1.625em;
  }
.first-p-wide{
  /*border:solid 1px;*/
  padding:0 15%;
  font-weight: 700;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.2em;
  margin-bottom: .85em;
  }

/* NAVBAR */

.move-under{
    position: relative;
    top: 0;
    /* top was 50px when I had navbar 11/4/21 */
  }
.move-under-that{
    position: relative;
    top: 0;
  }

  /* Re-styled bootstrap nav elements*/
  .navbar-default {
      background-color: #196b80;
      border-bottom: solid #dfd1c7 2px;
  }
  /* "title" on left of nav */
  .navbar-default .navbar-brand {
     color: #ccffff;
     border:none;
  }
  .navbar-default .navbar-brand:hover,
  .navbar-default .navbar-brand:focus {
      color: #ffffff;
  }
  /* link */
  .navbar-default .navbar-nav > li > a {
    color: #fff;
  }
  /* Hover (and focus) */
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #ccffff;  
    background-color: #28a0bd;
  }
  .navbar-default .navbar-nav > .active > a, 
  .navbar-default .navbar-nav > .active > a:hover, 
  .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    /* CURRENT-PAGE bgcolor */
    background-color: #ccf3ff;
  }
/* END NAV */


/*TOP BANNER, STUFF FOR SCALING*/
  /* first, the div */
.top-header{
  padding:.5em; /*to pad the text ony*/
  margin:0 0 10px 0; /*to force other elements down*/
  height:7.5em;
  /* next 2 lines VERTICALLY center the div's contents*/
  display: flex;
  align-items: center;
  }
  /* The IMAGE in the Banner */
  .bannerBackground{
  background-image: url("images/nyc_banner_resized.jpg");
  background-repeat: no-repeat;
  background-size:cover;
  background-color: #cccccc;
  }
/* END BANNER */

/* MARGINS, this class uses 
   margin-bottom to work from top down*/
  .myborder{
    /* Used on every CHILD in all rows */
    /*padding:.2em;*/
    margin-bottom: 0;
  }

/* FORM STUFF */
  form{
    width:55%;
    margin:0 auto;
  }

  fieldset{
    border-radius: 20px;
    border-bottom: solid 3px #196b80;
    background-color:#28a0bd; 
    padding: 1em 1.25em;
    margin-bottom: 1em;
  }

  .time{
    color: #196b80;
    background-color: #ccffff;
    padding: 0 .1em;
  }

  select{
    font-size: .8em;
    border-radius: 5px;
    width:75%
  }
/* END FORM */

/* IMAGES*/
/* Captioned Photos——
In this sample i'm using aLL Bootstrat classes for captioning
*/

figure{
  /*border: solid red;*/
  margin:0 auto;
  display:table;
}
figcaption{
  display:table-caption;
  caption-side: bottom; 
  line-height: 1.1em;
  padding: .75em;
}

/*TEST:  changing on  tiny screens */

@media screen and (max-width: 750px) {

    h1 {
       font-size: 1.3em;
       font-weight: 600;
       letter-spacing: .05em;
       line-height: 1em;
    }

    h2 {
       font-size: 1.2em;
       margin:0;
    }

    h3 {
       font-size: 1em;
    }

    .rtcolumn{
    padding-left: .75em;
    padding-right: 1em;
    }

    .move-under-that{
    position: relative;
    top: 50px;
    /*border:  solid green 10px;*/
    }

    p{
      font-size: .9em;
      line-height: 1.5em;
    }

    .first-p-wide{
     /*border:solid 1px;*/
      padding:0 10% .75em;
    }

    form{
    width:75%;
    }

    select{
      width:85%;
    }
}





