html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Manjari', sans-serif;
  font-size: 16px;
  background-color: #202020;
  color: #cccccc;
}

body {
  width: 100%;
}

.content {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  position: relative;
  z-index: 1;
}
.content::before {
  content: "";
  position: fixed;
  left: -5%;
  top: -5%;
  right: 0;
  z-index: -1;

  display: block;
  background-image: url('img/proj.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  opacity: 0.4;
  filter: blur(5px);
}

header {
  max-width: 68%;
  margin: 0% 16%;
  align-content: center;
  justify-content: center;
  text-align: center;
}

header h1 {
  display: inline-block;
  width: 360px;
  margin: 5px;
  padding: 10px 0px;
  border-bottom: 1px solid #dddddd;
  color: #dddddd;
  font-weight: 200;
}

header a {
  font-size: 46px;
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 0px 10px 0px;
}

ul.nav {
  clear: both;
  margin: 5px;
  padding: 0px;
  display: inline-block;
  text-align: center;
  justify-content: space-evenly;
}

ul.nav li {
  width: 105px;
  display: inline-block;
  list-style-type: none;
  text-align: center;
  margin: 0px;
  padding: 0px;
  border-right: 1px solid #4e4e4e;
}

ul.nav li:last-child {
  border-right: 0px;
}

ul.nav a {
  display: block;
  padding: 15px 0px;
  color: #c4c4c4;
  text-decoration: none;
}

ul.nav a:hover {
  background-color: #2a2a2a;
}

main {
  max-width: 1186px;
  flex: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.stream {
  width: 360px;
  margin: 5px;
  padding: 0px 10px;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  main {
    flex-direction: column;
  }
  header {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.stream h2 {
  text-align: center;
  display: inline-block;
  margin: 5px;
  margin-bottom: 10px;
  padding: 5px 40px;
  border-bottom: 0px solid #cccccc;
}
.stream p {
  margin: 10px 0px;
}
.stream iframe {
  vertical-align: bottom;
  border: 0;
  width: 360px;
  height: 478px;
}
ul.musiclinks {
  display: inline-block;
  width: 358px;
  margin: 0px;
  padding: 0px;
  outline: 1px solid #4e4e4e;
  text-align: center;
  justify-content: center;
  background-color: #303030;
}

ul.musiclinks li {
  width: 119px;
  display: block;
  list-style-type: none;
  float: left;
  padding: 0px;
}

ul.musiclinks li:nth-child(3n+0) {
  width: 120px;
}

ul.musiclinks a {
  display: block;
  font-size: 14px;
  padding: 8px 0px;
  text-decoration: none;
  color: #c4c4c4;
}

a.bandcamp:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #78c6db, #1da0c3, #78c6db);
}
a.spotify:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #48db7d, #1ed760, #48db7d);
}
a.apple:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #885cf5, #479bf1, #f55569);
}
a.tidal:hover {
  color: #ffffff;
  background-color: black;
}
a.deezer:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #ff9500, #be1857, #3353a3);
}
a.youtube:hover {
  color: #ffffff;
  background-color: #ff1300;
}

footer {
  max-width: 68%;
  margin: 0% 16%;
  padding: 10px 0px;
}

footer ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  text-align: center;
  justify-content: space-evenly;
}

footer li {
  display: block;
  list-style-type: none;
  min-width: 25%;
  max-width: 100%;
  padding: 0px;
  border-left: 1px solid #4e4e4e;
}

footer li:last-child {
  border-right: 1px solid #4e4e4e;
}

footer a {
  display: block;
  padding: 20px 0px;
  color: #c4c4c4;
  text-decoration: none;
}

footer a:hover {
  color: white;
}


a#facebook:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #4c68a1, #3b5998, #4c68a1);
}
a#instagram:hover {
  background-image: linear-gradient(to right, #fbd268, #de267e, #5e4bc9);
}
a#twitter:hover {
  color: #ffffff;
  background-image: linear-gradient(to right, #71c9f8, #1da1f2, #71c9f8);
}
a#email:hover {
  background-image: linear-gradient(to right, #e15146, #b53122, #e15146);
}


@media only screen and (max-width: 800px) {
  footer {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
  }

  footer li {
    width: 360px;
    border-left: 0px;
    border-bottom: 1px solid #4e4e4e;
  }
  footer li:last-child {
    border-right: 0px;
    border-bottom: 0px;
  }
  footer li a {
    padding: 20px 0px;
  }
}
