html {
  height: 100%;
  overflow-x: hidden; 
}



header {
  /*display: flex;
    flex-direction: row; */
  height: 20%;
  background-color: #000000;
  color: #fff;
  margin: 0;
  /* height: 100vh; */
  background-size: 20%;
  background-position: center;
  background-repeat: no-repeat;
  /* justify-content: space-around; */
  /* Horizontal centering */
  /*align-items: flex-start;
    /* Align to top */
  /*padding-top: 40px;
    /* Space from the top */

}


.site-header {
  /* display: flex; */
  /* Enable Flexbox */
  /* justify-content: space-around; */
  /* Pushes h1 left, nav right */
  /*align-items: center;*/
  align-content: center;
  text-align: center;
  vertical-align: middle;
  /* Vertically align items */
  padding: 12px 0px;
  color: white;
}

/*
.headertext h1 {
  margin: 0px;
  font-size: 60px;
  align-content: right;
  text-align: right;
  align-items: right;
  margin-bottom: 30%;
}
*/
.site-header nav a {
  /*align-content: center;
  text-align: center;
  align-items: center; */
  vertical-align: middle;
  justify-self: center;
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 35px;
}

@media (max-width: 767px){
  .site-header nav a{
    font-size: 20px;
  }
}


body {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  background-color: #f4f4f4;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 50vh;


}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50%;
  /* full viewport height, optional */
  padding: 0px;
}


.text {
  flex: 1;
  /* take available space on the left */
  padding-right: 20px;
  font-size: 28px;
  color: black;
}
.headertext {
  flex: 1;
  /* take available space on the left */
  padding-left: 40%;
  font-size: 45px;
  color: white;
  padding-top: 4%;
}




ul {
  list-style-type: none;
}

ul li {
  margin-bottom: 1.5em;
  /* Adjust spacing as needed */
}

ul li a {
  color: #9f4408;
  font-size: smaller;
}

/*
.concertsimage {
  background-image: url('newmanaudiencephoto.jpg');
  min-height: 75vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}*/
.hero {
  background-image: url("newmanaudiencephoto.jpg");
  background-size: cover;
  background-position: center top;
  height: 225px; /* mobile */
}
@media (min-width: 768px) {
  .hero {
    background-size: cover;
    height: 80vh; /* much larger on desktop */
    background-position: 20% top;
  }
  .headertext {
    font-size: 100px; /* desktop */
    padding-top: 5%;
  }
}












main {
  height: 30%;
  padding: 0px;
  /* background: white; */
  font-size: 50px;
  margin: 0;
  background-size: 20%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
}

footer {
  height: 75px;
  text-align: center;
  padding: 0%;
  margin-top: 0;
  align-content: center;
  /* position: relative; */
  /* bottom: 0; */
}