You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
637 B
CSS

/* Title Text Flicker */
@keyframes titleTextFlicker {
44%, 48%, 50% {
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a, 0 0 30px #00ff2a, 0 0 40px #00ff2a;
}
42%, 46%, 49% {
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a;
}
}
/* Title */
.title {
padding: 30px;
display: flex;
justify-content: center;
align-items: center;
background-color: #1a1a1a;
}
/* Title H1 */
.title h1 {
font-family: NeonSans;
font-size: 70px;
color: #00ff2a;
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a, 0 0 30px #00ff2a, 0 0 40px #00ff2a;
animation: titleTextFlicker 4s infinite;
}