* {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
}
.main {
    width: 100%;
    position: absolute;
    text-align: center;
    color: #fff;
    animation: flicker 1.5s infinite alternate;
    padding-top: 400px;
    
}
#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}
.bot {
    padding-top: 759px;
}
.deadlyclub {
    display: flex;
    justify-content: center;
}
.deadlyclub h1 {
    line-height: 1;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #d1e2f7;
    text-shadow: 2px 2px #015374;
}
.prava {
    display: flex;
    justify-content: center;
} 
.prava p {
    color: lightgray;
    opacity: 0.7;
    font-size: 80%;
}   
.icon {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
} 



@keyframes flicker {
    
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
  
        text-shadow:
        0 0 4px #fff,
        0 0 11px #fff,
        0 0 19px #fff,
        0 0 25px rgb(42, 187, 255),
        0 0 35px rgb(42, 187, 255),
        0 0 45px rgb(42, 187, 255),
        0 0 55px rgb(42, 187, 255),
        0 0 65px rgb(42, 187, 255);
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
    }
}