:root{
    --primary-color: rgba(126, 0, 25, 0.945);
}

/* Blood Drip */
.drop {
  position: absolute;
  z-index:-10;
	width: 6px;
	height: 6px;
  top: 30px;
  transform: scale(0.1);
  margin: 0 auto;
	background: rgba(128,0,0,1);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
  -moz-animation-name: drip;
  -webkit-animation-name: drip;
  animation-name: drip;
  -moz-animation-timing-function: cubic-bezier(1,0,.91,.19);
  -webkit-animation-timing-function: cubic-bezier(1,0,.91,.19);
  animation-timing-function: cubic-bezier(1,0,.91,.19);
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-box-shadow: 0px 0px 20px rgb(166,16,30);
  -moz-box-shadow: 0px 0px 20px rgb(166,16,30);
       box-shadow: 0px 0px 20px rgb(166,16,30);
}

.drop:before {
  content: "";
  position: absolute;
  width: 0;
	height: 0;
	border-left: 3x solid transparent;
	border-right: 3px solid transparent;
	border-bottom: 8px solid  rgba(128,0,0,1);
  top: -22px;

}


.drop:before {
  content: "";
  position: absolute;
  width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-bottom: 8px solid  rgba(128,0,0,1);
  top: -7px;
}


.drop:nth-child(1){
  animation-delay: 5s;
  right:50%;
}

.drop:nth-child(2){
  animation-delay: 1s;
  right:10%;
}
.drop:nth-child(3){
  animation-delay: -0.9s;
}
.drop:nth-child(4){
  animation-delay: 3s;
  left:1%;
}
.drop:nth-child(5){
  animation-delay: -1.5s;
  right:20%;
}
.drop:nth-child(6){
  animation-delay: -0.5s;
  left:1%;
}
.drop:nth-child(7){
  animation-delay: -0.8s;
  left:50%;
}
.drop:nth-child(8){
  animation-delay: -0.3s;
  left:75%;
}
.drop:nth-child(9){
  animation-delay: -0.3s;
  left:50%;
}
.drop:nth-child(10){
  animation-delay: -2s;
  left:40%;
}

@keyframes drip {
  1%{
    transform: scale(0.2);

  }
  5%{
    }
  20% {
    transform: scale(0.5);
  }
  50%{
    transform: scale(1);
  }
  to {
    transform: scale(1);
    top: 100vh;
    -webkit-box-shadow: 0px 0px 4px rgb(220, 7, 28);
    -moz-box-shadow: 0px 0px 4px rgb(220, 7, 28);
         box-shadow: 0px 0px 4px rgb(220, 7, 28);
  }
}

#main-site-logo{
  position: relative;
}

header {
    /* Striped background */
    background: #2a1135;
    background-image: linear-gradient(90deg, transparent 50%, #190b20 50%);
    background-size: 52px;
    box-shadow: inset 0 0 100px #000;
    text-align: center;
    position: relative;
    /* Hover transition */
    /* Header bottom edge */
  }
  header::before, header::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
  }
  header::before {
    /* Red gradients for blood */
    background: linear-gradient(red 50%, transparent 60%), radial-gradient(#d40000 50%, transparent 100%), radial-gradient(red 30%, transparent 40%), radial-gradient(#d40000 10%, transparent 50%), radial-gradient(red 10%, transparent 15%);
    background-size: 100% 100%, 500px 500px, 400px 300px, 103px 273px, 300px 800px;
    background-position: 0 0, -97% -78%, 71% 0%, 7% 23%, 5% 49%;
    /* Background blend for bleed effect */
    mix-blend-mode: multiply;
    /* Mouse ignore blood */
    pointer-events: none;
    /* Hide before hover transition */
    opacity: 0;
    transform: translateY(0%);
    /* Mouseout effect */
    transition: opacity 3s linear, transform 1s 3s linear;
    height: 100%;
    top: 0;
    opacity: 0.7;
    transform: translateY(0);
    transition: opacity 1s 0s, transform 5s 0s linear;
  }
  header:hover::before {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s 0s, transform 5s 0s linear;
  }
  header::after {

  }


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  }

/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }