body {
    color: white;
    background-color: black;
    background-image: url("html_default1.jpeg");
    position: absolute;
    margin: 0px;
    width: 100%;
}

.noHover{
    pointer-events: none;
}

.elem-a {
    font-size: 25px;
    font-family: Times New Roman;
    color: white;
    text-align: center;
    letter-spacing: 6px;
}

.elem-a:link {
    font-family: Times New Roman;
    text-decoration: none;
}

.elem-a:hover {
    color: black;
}

p:link {
    text-decoration: none;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index:-99;
    margin: 0px;
}

#video_background_main {
    opacity: 0;
    transition: opacity 19s ease-in;
}

#video_background {
    opacity: 0;
    transition: opacity 25s ease-in;
}

.pgrphlnk:link {
    color: white;
    font-size: 100%;
    font-family: Times New Roman;
    text-decoration:underline;
}

.pgrphlnk:hover {
    color: blue;
}

.btn {

//Font
font-family: Times New Roman;
    color: #ffffff;
    font-size: 50px;
    padding: 10px 20px 10px 20px;
    border: solid #d1d1d1 2px;
    text-decoration: none;

//Box
-1px -1px 0 #000000,
1px -1px 0 #000000,
-1px 1px 0 #000000,
1px 1px 0 #000000,
-2px 0 0 #000000,
2px 0 0 #000000,
0 2px 0 #000000,
0 -2px 0 #000000;
}

.steamlink {
    color: white;
}

.steamlink:hover {
    color: darkgrey;
}

.smallTxt {
    font-size: 10px;
}

.paragraph {
    font-size: 64px;
    font-family: arial;
    font-weight: bold;
    color: white;
    text-align: center;
}

.outline {
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
}

.glitch {
    animation: uk-text-shadow-glitch .65s cubic-bezier(.25, .46, .45, .9399999999999999) both infinite;
    width:100%;
    max-width:750px;
    color:#fff;
    font-size:68px;
    font-weight:700;
    /*text-transform:uppercase;*/
    line-height:1.2;
    letter-spacing:4px;
    margin:0 auto
}

.glitch-slow {
    animation: uk-text-shadow-glitch-reversed 1.65s cubic-bezier(.25, .46, .45, .9399999999999999) both infinite;
    width:100%;
    max-width:750px;
    color:#fff;
    font-size:68px;
    font-weight:700;
    /*text-transform:uppercase;*/
    line-height:1.2;
    letter-spacing:4px;
    margin:0 auto
}

.glitch-slower {
    animation: uk-text-shadow-glitch-reversed 2.75s cubic-bezier(.25, .46, .45, .9399999999999999) both infinite;
    width:100%;
    max-width:750px;
    color:#fff;
    font-size:68px;
    font-weight:700;
    /*text-transform:uppercase;*/
    line-height:1.2;
    letter-spacing:4px;
    margin:0 auto
}

.fade-in-video {
    animation: fadeIn 18s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 400px) {
    .glitch {
        font-size: 3em;
    }
}

@keyframes uk-text-shadow-glitch{
    0%{
        text-shadow:none
    }
    25%{
        text-shadow:-2px -2px 0 #ff0048,2px 2px 0 #3234ff
    }
    50%{
        text-shadow:2px -2px 0 #ff0048,-2px 2px 0 #3234ff
    }
    75%{
        text-shadow:-2px 2px 0 #ff0048,2px -2px 0 #3234ff
    }
    100%{
        text-shadow:2px 2px 0 #ff0048,-2px -2px 0 #3234ff
    }
}

@keyframes uk-text-shadow-glitch-reversed{
    0%{
        text-shadow:-2px -2px 1px #ff0048,2px 2px 1px #3234ff
    }
    16%{
        text-shadow:2px -2px 1px #ff0048,-2px 2px 1px #3234ff
    }
    31%{
        text-shadow:-2px 2px 1px #ff0048,2px -2px 1px #3234ff
    }
    45%{
        text-shadow:2px 2px 1px #ff0048,-2px -2px 1px #3234ff
    }
    59%{
        text-shadow:-2px 2px 1px #ff0048,2px -2px 1px #3234ff
    }
    73%{
        text-shadow:2px -2px 1px #ff0048,-2px 2px 1px #3234ff
    }
    100%{
        text-shadow:-2px -2px 1px #ff0048,2px 2px 1px #3234ff
    }
}