html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #0c0c0c;
}

p {
    color: #a7a7a7;
    font-family: 'Aldrich', sans-serif;
    font-size: 0.7em;
    line-height: 2.0em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
h1 {
    color: #ed1846;
    font-family: 'Aldrich', sans-serif;
    font-size: 1.2em;
    letter-spacing: 8px;
    line-height: 1.2em;
    text-align: center;
    margin-top: 18px;
}
h2 {
    color: #ed1846;
    font-family: 'Aldrich', sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1.2em;
    text-align: center;
    margin-top: 25px;
}
h3 {
    color: #a7a7a7;
    font-family: 'Aldrich', sans-serif;
    font-size: 0.55em;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.8em;
    text-align: left;
    margin-top: 0px;
}
h4 {
  color: #323232;
  font-family: 'Aldrich', sans-serif;
  font-size: 0.6em;
  line-height: 2.0em;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}

h5 {
  color: #a7a7a7;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8em;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-transform: none;
  text-align: justify;
  margin-top: 2px;
}

#header {
  position: fixed;
  margin-left: 0;
  margin-top: 0;
  border: 5px solid #060606;
  background-color: #060606;
  width:100%;
  height: 90px;
  -webkit-box-shadow: 0px 0px 20px #ed1846;
  -moz-box-shadow: 0px 0px 20px #ed1846;
  box-shadow: 0px 0px 20px #ed1846;
  z-index: 900;
}

.mainLogo {
  display: block; margin-left: 20; margin-right: auto;
  max-width: 100%;
  margin-top: 8px;
}

#player {
    margin: -48 0;
    width: 42px;
    height: 42px;
}

.nowPlaying {
    margin: 14 50;
}

#mainContainer {
  box-sizing: border-box;
  background-color: #060606;
  width: 95%;
  margin: auto auto;
  padding-bottom: 70px;
  -webkit-box-shadow: 0px 0px 25px #000000;
  -moz-box-shadow: 0px 0px 25px #000000;
  box-shadow: 0px 0px 25px #000000;
}

.mainContainerImg {
  background-color: #060606;
  background-image: url(../images/El_Wall_13.jpg);
  background-position: center;
  background-size: contain;
  padding-top: 5rem;
  display: table;
  width: 100%;
}

.textContainer {
  box-sizing: border-box;
  background-color: #060606;
  width: 90%;
  margin: auto auto;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 25px #000000;
  -moz-box-shadow: 0px 0px 25px #000000;
  box-shadow: 0px 0px 25px #000000;
}

#mordaContainer * {
  box-sizing: border-box;
  background-color: #060606;
  border-radius: 2px;
}

#mordaContainer {
  width: 100%;
  margin: 130px auto;
  position: relative;
  max-width: 220px;
}

section {
  position: relative;
  width: 220px;
  height: 220px;
  background: url('../../assets/images/logoMordaBig.png');
  background-color: #060606;
}

.boxShadow {
  background-color: #060606;
  border: 1px solid #ed1846;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 15px #ed1846;
  -moz-box-shadow: 0px 0px 15px #ed1846;
  box-shadow: 0px 0px 15px #ed1846;
  max-width: 100%;
}

section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: url('../../assets/images/logoMordaBig.png');
  opacity: .3;
}

section:before {
  animation: animate 7s linear infinite;
}

@keyframes animate {
  0%
  {
    background-position: 3px 0;
    filter: hue-rotate(0deg);
  }
  5%
  {
    background-position: 5px 0;
  }
  10%
  {
    background-position: -3px 0;
  }
  20%
  {
    background-position: 0px 4px;
  }
  26%
  {
    background-position: -2px 3px;
  }
  30%
  {
    background-position: -4px 0px;
  }
  40%
  {
    background-position: 2px -5px;
  }
  50%
  {
    background-position: -2px -3px;
    filter: hue-rotate(-20deg);
  }
  51%
  {
    background-position: 10px -3px;
  }
  52%
  {
    background-position: -2px -3px;
  }
  53%
  {
    background-position: 10px -3px;
  }
  58%
  {
    background-position: -2px -3px;
  }
  60%
  {
    background-position: -6px 4px;
  }
  64%
  {
    background-position: -2px 6px;
  }
  78%
  {
    background-position: -2px 2px;
  }
  80%
  {
    background-position: 0px -3px;
  }
  82%
  {
    background-position: 1px 5px;
  }
  85%
  {
    background-position: -3px 1px;
  }
  87%
  {
    background-position: 1px 6px;
  }
  90%
  {
    background-position: -3px 0px;
  }
  93%
  {
    background-position: 2px -6px;
  }
  97%
  {
    background-position: 2px 0px;
    filter: hue-rotate(0deg);
  }
}

#footerContainer {
  position: fixed;
  width: 100%;
  left: 0px;
  bottom: 0px;
  border: 5px solid #060606;
  background-color: #060606;   
  -webkit-box-shadow: 0px 0px 10px #4f4f4f;
  -moz-box-shadow: 0px 0px 10px #4f4f4f;
  box-shadow: 0px 0px 10px #4f4f4f;
  }

