
/* DOCUMENT LEVEL COMPONENTS */
html, body, #main { height: 100%; }

/* QUICK FONT TOGGLE FOR TESTING LOCALLY */
.local { font-family: "Gotham Narrow"; }
.local h1 { font-family: "Sentinel"; }

/* ADDITIONAL RESETS */
fieldset { border: 0; }

textarea, input[type="text"], input[type="email"] { outline: none; }

html {
  font-family: "Gotham Narrow SSm A", "Gotham Narrow SSm B";
  font-style: normal;
  font-weight: 200;
  font-size: 18px; /* Sweeping font changes */  
  color: #fff;
}

body {
  background: #000 url(../_img/street_rain.gif) no-repeat;
  background-size: cover;
  background-position: left top;
}

h1 {
  font-family: "Sentinel A", "Sentinel B";
  font-style: normal;
  font-weight: 700;
  font-size: 2.5rem; /* 45/18 */
  margin-bottom: 0;
}

h1 span { color: #fbb829; }

h2 {
  margin: 0 0 1rem 0;
  padding: 0 1rem;
  font-size: 1.5rem; /* 27/18 */
  font-weight: 200;
}

h2 span.breakpoint { white-space: nowrap; } /* Break at a graceful point */

#main {
  background:linear-gradient(to top, rgba(0,0,0,.85) 10%, rgba(0,0,0,.25) 80%, rgba(0,0,0,0));
                    display: flex;
                    display: -webkit-flex;
     -webkit-flex-direction: column;
             flex-direction: column;
    -webkit-justify-content: center; /* along main axis; vertical */
            justify-content: center;
        -webkit-align-items: center; 
                align-items: center;
                 text-align: center;
}

/* SIGN UP FORM */
.hidden-from-view { /* Mailchimp code */
  left: -5000px;
  position: absolute;
}

input-placeholder { color: #aaa;}

.subscribe { color: #333; }

.subscribe .email_field, .subscribe button { vertical-align: middle; }

.subscribe .email_field {
  display: block;
  margin: 0 auto;
  padding: .55rem;
  font-weight: 200;
  border: none;
  border-radius: .33rem; /* 6/18 */
  box-shadow: inset 1px 1px rgba(0,0,0,.1);
}

.subscribe button {
  box-sizing: border-box;
  display: block;
  margin: .5rem auto 0 auto;
  padding: .55rem; 
  width: 100%;
  border: none;
  border-radius: .33rem; /* 6/18 */
  background-color: #fbb829;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

/* FINE PRINT */
small {
  font-size: .83rem; /* 15/18 */
  margin-top: 1rem;
  opacity: .4;
}

small span { display: none; }

@media (min-width: 640px) { 
  html { font-size: 24px; } /* Sweeping font changes */  

  body { background-position: left center; }

  h1 { margin-top: 0; }

  h2 span { display: inline; }

  small span { display: inline; }

  #main { background:linear-gradient(to top, rgba(0,0,0,.85) 10%, rgba(0,0,0,.15) 70%, rgba(0,0,0,0)); }

 .subscribe .email_field, .subscribe button {
    display: inline-block;
    width: auto;
  }

  .subscribe .email_field {
    box-shadow: inset 1px 2px rgba(0,0,0,.2);
    border-radius: .25rem 0 0 .25rem ; /* 6/24 */
  }

  .subscribe button {
    margin: 0 0 0 -.3rem;
    border-radius: 0 .25rem .25rem 0; /* 6/24 */
  }
}