/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

body {
  background-color: white;
  font-family: "Open Sans", sans-serif;
  padding: 5px 0px;
  font-size: 18px;
  margin: 0;
  color: #444;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: gray
}

h3 {
  font-family: curs; 
}

p{
  
  color: dimgrey;
  
}

nav{ text-align: center; }
nav a{
  color: indianred; 
  text-decoration: none;
  font-family: helvetica;
  font-size: 16px;
  
}

.spacer{
  background-image: url(interstitial.jpg);
  background-size: cover;
  width: 100%;
  min-height: 200px;
  margin: 120px 0px 170px 0px;
  background-color: #eee;
  opacity: 0.7;
 
}

.spacer2{
  background-image: url(bandw.jpg);
  background-size: cover;
  width: 100%;
  min-height: 200px;
  margin: 120px 0px 170px 0px;
  background-color: #eee;
  opacity: 0.7;
}

.gfx{ width: 100%; }

.desktoponly{ display: none;}
.mobileonly{ display: block;}


@media (min-width: 550px){
  .desktoponly{ display: block;}
  .mobileonly{ display: none;}
  h1{ font-size: 32px; }
  
}