/* Styles for mobile screens */
@media only screen and (max-width: 600px) {
  .mobile {
    display: block;
  }

  .tablet, .logo-spacer {
    display: none;
  }

  .gallery {
    justify-content: center;
  }

  html {
    font-size: 12px;
  }

  .banner {
    height: 160px;
  }

  .billboard {
    position: static;
    background-color: transparent;
    max-width: 100%;
    text-align: center;
    padding-right: 1rem;
  }
  
  .billboard h1,  
  .billboard h3 {
    color: var(--dark-accent-text);
  }

  footer {
    height: 256px;
    
    justify-content: flex-start;
  }
 
  
}