* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: 	border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
body{
    font-family: sans-serif;
    background-color: #11111d;
    color: white;
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding: 20px;
}
.home{
    font-size: 18px;
    line-height: 1.5em;

    p{
      padding: 20px 0;
    }
    img{
        float: right;
        max-width: 50%;
        padding: 0 0 10px 10px;
    }
  }
.clearfix, .cf {
  zoom: 1;
	&:before, &:after { content: ""; display: table; }
	&:after { clear: both; }
}
.wrapper{
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
  z-index: 2;
}
h1{
    text-align: center;
    margin-bottom: 60px;
    color: rgba(231,79,180,1);
    text-shadow: 4px 4px 4px blue;
}
h2{
    font-size: 24px;
    line-height: 1.25em;
}


a{
    display: block;
    margin-top: 20px;
    color: white;
}
.footer{
  .link-list{
    float: right;

    a{
      font-size: 14px;
      float: left;
      margin: 15px;
    }
  }
}

@media only screen and (min-width: 768px) {
  .song-list div{
    float: left;
    width: 50%;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media only screen and (min-width: 1024px) {
  .home{
    font-size: 22px;
    line-height: 1.5em;

    p{
      padding: 40px 0 20px;
    }
  }
}




/* lines stuff on song page */
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  display: flex;
  z-index: 0;
  justify-content: space-between; /* Distribute lines evenly */
}

.line {
  position: relative;
  width: 3px;
  height: 100%;
  overflow: hidden;
}

.line::after {
  content: '';
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: drop 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Different colors for each line's pseudo-element */
.line:nth-child(1)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF4500 75%, #FF4500 100%);
  animation-delay: 0.5s;
}

.line:nth-child(2)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
  animation-delay: 1s;
}

.line:nth-child(3)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #1E90FF 75%, #1E90FF 100%);
  animation-delay: 1.5s;
}

.line:nth-child(4)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFD700 75%, #FFD700 100%);
  animation-delay: 2s;
}

.line:nth-child(5)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #8A2BE2 75%, #8A2BE2 100%);
  animation-delay: 2.5s;
}

.line:nth-child(6)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #20B2AA 75%, #20B2AA 100%);
  animation-delay: 3s;
}

.line:nth-child(7)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #DC143C 75%, #DC143C 100%);
  animation-delay: 3.5s;
}

.line:nth-child(8)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00FA9A 75%, #00FA9A 100%);
  animation-delay: 4s;
}

.line:nth-child(9)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF1493 75%, #FF1493 100%);
  animation-delay: 4.5s;
}

.line:nth-child(10)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00BFFF 75%, #00BFFF 100%);
  animation-delay: 5s;
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
