/* .headerBG{
  background-size: cover; 
  background-position: top center; 
  background-repeat: no-repeat; 
}

.headerContainer{
  flex-basis: 100%;   
}

.headerContainer h1{
  font-family:"ivypresto-display";
  font-weight: 600; 
}
  
  
.homeHeaderButton{
  display:inline-block; 
  color:white; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-size: 20px; 
  font-family:"interstate";
  font-weight: 700;
  text-decoration: none; 
}

.homeHeaderButton:after {
  display:block;
  content: '';
  border-bottom: solid 3px #04c5fe;  
  transform: scaleX(1);  
  transition: transform 250ms ease-in-out;
}
.homeHeaderButton:hover:after { transform: scaleX(.3); }   

@media screen and (max-width: 800px) {
.headerBG{
   background-image:none!important;
  background-color:#000!important;
}
  h1 {
    font-size:42px !important;
  }
}









 */