html, body{
  margin:0;
  padding:0;
  /*border: double 4px black;*/
  background-color: wborder-bhite;

  font-size: 105%;
  /* COOL, but–  height:100%;Titillium Web    Baloo+Bhaijaan  Montserrat*/
  }

* {
    box-sizing: border-box;
  }

h1, h2, h3{
  color: #39847f;
  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:'Dosis', cursive;
  color: white; 
  /*background-color: #28a0bd;*/
  margin: 0 auto;
  font-size: 3em;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1em;
  text-shadow: .1em .1em 8px #000000;
}
h2{
  font-family:'Dosis', cursive;
  /*text-transform: uppercase;*/
  font-size: 2em;
  text-align: center;
  margin: .6em 0 .6em 0;
  font-weight:500;
}
.thisCourse{
  display:block;
  width:100%;
  text-align: center;
  font-family:'Dosis', cursive;
  text-transform: uppercase;
  font-size: 1.35em;
  margin: 0 0 10px 0;
}
h3{
  font-family: 'Dosis', serif;
  font-size: 1.25em;
  line-height: 1.35em;
  color: white; 
  margin:0;
  padding:0;
  }

p{
  text-align: justify;
  line-height: 1.625em;
  }
.first-p-wide{
  /*border:solid 1px;*/
  padding:0 15% 2em;
  font-weight: 700;
  text-align: center;
  font-size: 1.75em;
  letter-spacing: .15em;
  }

/* NAVBAR */

.move-under{
    position: relative;
    top: 0;
    /* was 50px when I kept the navbar */
  }
.move-under-that{
    position: relative;
    top: 1em;
  }

  /* Re-styled bootstrap nav elements*/
  .navbar-default {
      background-color: #34373d; 
      border-bottom: solid #dfd1c7 2px;
  }
  /* "title" on left of nav */
  .navbar-default .navbar-brand {
     color: #b6c4c0;
     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: #737c8c;
  }
  .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: #b6c4c0;
  }
/* END NAV */


/*TOP BANNER, STUFF FOR SCALING*/
  /* first, the div */
.top-header{
  padding:.5em; /*to pad the text ony*/
  margin:0 0 20px 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-fit_resized1.png");
  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:0;
    margin-bottom:.3em;
  }

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

  fieldset{
    border-radius: 20px;
    border-bottom: solid 3px #737c8c;
    background-color:#39847f; 
    padding: .75em 1em;
    margin-bottom: .5em;
  }

  .time{
    color: #737c8c;
    background-color: #ccffff;
    padding: 0 .1em;
  }

  select{
    font-size: .8em;
    border-radius: 5px;
    width:75%
  }
  .underline{
    text-decoration: underline;
  }
/* 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: should change on from tiny screens? */

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

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

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

    h3 {
       font-size: 1em;
    }

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

    .move-under-that{
    position: relative;
    top: 50px;
    }

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

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

    form{
    width:75%;
    }

    select{
      width:85%;
    }
}





