body{background-color:black
}

.parallelogram {
	width: 200px;
	height: 30px;
	transform: skew(20deg);
	background: white;
  box-shadow: 60px 30px 40px 20px #e60073;
}
.triangle-down{
  	width: 0;
  	height: 0px;
  	border-left: 25px solid transparent;
  	border-right: 25px solid transparent;
  	border-top: 400px solid white;
    box-shadow: 40px 50px 40px 10px #7FFFD4
  }

  .glow {
    font-size: 20em;
    color: 	#7FFFD4;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }

  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px 	#98FB98, 0 0 50px 	#98FB98, 0 0 60px 	#98FB98, 0 0 70px 	#98FB98;
    }

    to {
      text-shadow: 0 0 20px #fff, 0 0 30px 	#F4A460, 0 0 40px 	#F4A460, 0 0 50px 	#F4A460, 0 0 60px 	#F4A460, 0 0 70px 	#F4A460, 0 0 80px 	#F4A460;
    }
  }
