@charset "UTF-8";

h1
{
    margin: 0;
    padding: 0;
    color: #111;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: bolder;
    font-family: DotGothic16, sans-serif;
    color: rgb(255, 0, 0);
    text-transform: uppercase;
    text-align: center;
    
}
h1 span
{
    display: table-cell;
    margin: 0;
    padding: 0;
    animation: animate 1s linear infinite;
}
h1 span:nth-child(1)
{
    animation-delay: 0.25s;
}
@keyframes animate
{
    0%
    {
        color: #fff;
        filter: blur(2px);
        text-shadow: 0 0 10px red;
        text-shadow: 0 0 20px red;
        text-shadow: 0 0 40px red;
        text-shadow: 0 0 80px red;
        text-shadow: 0 0 120px red;
        text-shadow: 0 0 200px red;
        text-shadow: 0 0 300px red;
        text-shadow: 0 0 400px red;
        text-shadow: 0 0 500px red;
        text-shadow: 0 0 600px red;
    }
    5%,95%
    {
        color: #fff;
        filter: blur(0px);
        text-shadow: none;
    }

}
.video
{
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
    align-items: left;
}
.video video
{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
    opacity: 0.95;
   
}

@media screen and (min-width: 800px){
    body {
        background-color: rgb(255, 0, 0);
        opacity: 0.3;
    }

}