html {
  height: 100%;
}

body {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 50vh;


}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  /* full viewport height, optional */
  padding: 0px;
}


.text {
  flex: 1;
  /* take available space on the left */
  padding-right: 20px;
  font-size: 28px;
  color: black;
}

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('background2.jpg');
  /* replace with your image */
  min-height: 100vh;
  background-size: cover;
  /* makes image fill the area while cropping edges if needed */
  background-repeat: no-repeat;
  /* prevents tiling */
  background-position: center center;
}

header {
  /*display: flex;
    flex-direction: row; */
  height: 30%;
  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 10px;
  color: white;
}

.site-header h1 {
  margin: 0px;
  font-size: 60px;
  align-content: center;
  text-align: center;
  align-items: center;
}

.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: 27px;
}


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; */
}