.bf {
	font-size: 70px;
    font-weight:bold;
	text-decoration: none;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	color: #ffffff;
	font-family: Arial;
	text-shadow: 0 0 16px rgb(255,255,255), 0 0 32px rgb(255,255,255), 5px 5px 1px rgba(90,90,90,.25);
	background-color: black;
	padding: 0;
	text-align: center;
	line-height: 90px;
	/* position: fixed; */
	margin-top: -10px;
	width: 100%;
	z-index: 999;
}
.bf2 {
    margin-top: -10px;
    font-family: Arial;
    text-align:center; 
    font-weight:bold; 
    font-size:70px;
    background-color: #111;
    z-index: 999;
    padding: 0;
    line-height: 90px;
    color: red;
        text-shadow:
        0 2px 0 rgb(220,220,220),
        0 0 4px rgb(255,255,255),
        0 0 4px transparent,
        0 0 8px rgb(255,0,0),
        0 0 16px rgb(255,0,0),
        0 0 24px rgb(255,0,80),
        0 0 48px rgb(255,0,80),
        5px 5px 1px rgba(255,255,255,.25);
}


@keyframes neon-glow {
    0%{
        color: red;
        text-shadow:
        0 2px 0 rgb(220,220,220),
        0 0 4px rgb(255,255,255),
        0 0 4px transparent,
        0 0 8px rgb(255,0,0),
        0 0 16px rgb(255,0,0),
        0 0 24px rgb(255,0,80),
        0 0 48px rgb(255,0,80),
        5px 5px 1px rgba(255,255,255,.25);
    }
    50%{
        text-shadow:
        0 2px 0 rgb(220,220,220),
        0 0 4px rgb(255,255,255),
        0 0 16px rgb(255,255,255),
        0 0 16px rgb(255,0,0),
        0 0 32px rgb(255,0,0),
        0 0 60px rgb(255,0,80),
        0 0 100px rgb(255,0,80),
        11px 11px 1px rgba(0,0,0,.75);
    }
}
.anim-neon-glow{
  
    animation-name: neon-glow;
    animation-duration: 2500ms;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0,0.61,1,-0.48);
    animation-iteration-count: infinite;
}
.defect{
  color: red;
  -webkit-animation: neon-broke 2.5s ease-in-out infinite alternate;
    text-shadow:
        0 2px 0 rgb(220,220,220),
        0 0 4px rgb(255,255,255),
        0 0 4px transparent,
        0 0 8px rgb(255,0,0),
        0 0 16px rgb(255,0,0),
        0 0 24px rgb(255,0,80),
        0 0 48px rgb(255,0,80),
        5px 5px 1px rgba(255,255,255,.25);
}
@-webkit-keyframes neon-broke{
  
0%{ opacity: 1; }
  3%{ opacity: 1; }
  6%{ opacity: 1; }
 82%{ opacity: 1; }
  83%{ opacity: 0.7; }  
  
  84%{ opacity: 1; }
  85%{ opacity: 0.7; }  
  
  86%{ opacity: 1; }
 
}

@media all and (max-width: 780px) { 
    .bf, .bf2 { font-size: 40px; line-height: 45px}
    
}