html {
    box-sizing: border-box;
    background-color: #000;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    /*font-family: Helvetica;*/
    font-family: 'Droid Sans Mono', monospace;
    /*font-family: 'VT323', monospace;*/
    font-family: 'Share Tech Mono', monospace;
    background-color: #000;
}

.fullscreen_video {
    width: 100%;
    height: 250px;
    background-color: #000;

    background-repeat: no-repeat;
    background-position: center center;

    object-fit: cover;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    /* css fix for video background cover for IE */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;
    display: block;
}

.fullscreen_text {
    text-align: center;
}

/* .fullscreen_text {
    background-image: url('../images/bg_video_pattern_dk.png') !important;
} */

.fullscreen_text h1 {
    color: #FFF;
    font-size: 60px;
    font-weight: normal;
    margin: 0 auto 0 auto;
    opacity: 0.6;
    filter: alpha(opacity=60);
    /* For IE8 and earlier */
}

.fullscreen_text .sub-text {
    color: #FFF;
    opacity: 0.3;
    filter: alpha(opacity=30);
    /* For IE8 and earlier */
}

.logo {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
    background-color: #FFF;
    opacity: 0.3;
    filter: alpha(opacity=30);
    /* For IE8 and earlier */
    cursor: pointer;
    text-align: center;
    color: #000;
    line-height: 100px;
    background-image: url('../images/v.jpg');
    background-repeat: no-repeat;
}

.logo:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.blinking-cursor {
    color: #FFF;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
}

.variable-h1 {
    width: 100%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.ticker {
    position: fixed;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    bottom: 0;
    float: right;
    color: #FFF;
    height: 30px;
    font-size: 14px;
    line-height: 2;
    opacity: 0.6;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.ticker a {
    color: #FFF;
    text-decoration: underline;
}

/*.h1-dupe{
  position: relative;
  top:0;
  color:#000;
}

.variable-h1-dupe{
  color:#000;
}*/

@keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-moz-keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-webkit-keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-ms-keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@-o-keyframes blink {

    from,
    to {
        color: transparent;
    }

    50% {
        color: white;
    }
}

@media (max-width: 750px) {

    .variable-h1,
    .blinking-cursor {
        font-size: 30px;
    }

    .sub-text {
        font-size: 12px;
    }

    .logo {
        width: 50px;
        height: 50px;
        background-size: 50px 50px;
    }
}

@media (max-width: 600px) {

    .variable-h1,
    .blinking-cursor {
        font-size: 20px;
    }

    .sub-text {
        font-size: 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
        background-size: 50px 50px;
    }
}