html {
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #ffd068;
}
body {
  background-color: rgb(19, 19, 19);
}

a {
  color: #ffd068;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.3em;
  text-align: center;
  color: white;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 0px;
}

h2 {
  font-size: 1em;
  text-align: center;
  color: black;
  font-weight: bold;
  background-color: #ffd068;
  padding: 5px 0px;
}

/*BEGIN CONTENT//////////////////////////////////*/

header {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logo {
  max-width: 70px;
}

.username {
  display: flex;
  flex-direction: row;
}

nav ul {
  list-style-type: none; /* Remove bullets */
  padding: 0px 0px;
  margin: 0px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

nav ul li {
  width: 12.5%;
  text-decoration: none;
}
nav ul li a,
#mobileNav li a {
  color: #ffd068;
  display: block;
  text-align: center;
  padding: 20px 0;
}

nav ul li a:hover,
#mobileNav li a:hover {
  background-color: #ffd068;
  text-decoration: none;
  color: black;
}

#mobileNav {
  display: none;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.mobileX {
  display: block;
  text-align: right;
  padding: 10px;
}

.mobileBars {
  display: none;
}

.banner {
  height: 800px;
  background-image: url("img/underwater.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerText {
  font-family: "Bangers", cursive;
  letter-spacing: 10px;
  color: #ffd068;
  font-size: 8em;
  padding: 40px 10%;
  background-color: rgba(0, 0, 0, 0.5);
}
.promoBoxes {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

article {
  min-height: none;
  height: 350px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

article h1 {
  padding: 5px;
}

.gig {
  background-image: url("img/guitar.jpg");
  background-size: cover;
  background-position: center;
}

.tour {
  background-image: url("img/keyboard-singer.jpg");
  background-size: cover;
  background-position: center;
}
.best {
  background-image: url("img/applause-audience-band.jpg");
  background-size: cover;
  background-position: center;
}
.tracks {
  background-color: rgba(27, 27, 27, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  width: 60%;
  max-width: 500px;
  margin: 60px auto;
}

.trackItem {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 40px;
}

.trackItem img {
  width: 20px;
  height: 20px;
}

footer {
  background-color: #ffd068;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
}

footer ul {
  width: 50%;
  max-width: 400px;
  padding: 50px 0;
  list-style-type: none;
}

footer ul li {
  font-size: 1.5em;
  font-weight: normal;
}

footer ul li a {
  color: black;
  text-decoration: none;
  font-size: 0.8em;
  padding: 20px 0;
}

footer ul li a:hover {
  text-decoration: underline;
  cursor: pointer;
}

footer img {
  margin: 10px 0;
  width: 100px;
  height: 100px;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  height: 140px;
  background-color: rgb(19, 19, 19);
}

.fa-facebook {
  color: #4267b2;
}

.fa-instagram {
  color: #8a3ab9;
}

.fa-twitter {
  color: #00acee;
}

.fa-facebook:hover,
.fa-instagram:hover,
.fa-twitter:hover {
  color: #ffd068;
}

.copyright {
  text-align: center;
  margin: 30px 0;
}

/*/////////////////////////////////////////
media queries
/////////////////////////////////////////////*/
@media only screen and (max-width: 800px) {
  .username,
  nav {
    display: none;
  }
  .mobileBars {
    display: block;
  }

  .bannerText {
    font-size: 13vw;
  }

  .promoBoxes {
    flex-direction: column;
  }
  article {
    width: 100%;
  }

  .tracks {
    width: 100%;
    max-width: none;
  }

  footer {
    flex-direction: column;
    padding: 0px 0;
  }

  footer ul {
    width: 100%;
    text-align: center;
  }

  .social-media {
    width: 100%;
  }
}
