@charset "UTF-8";

@font-face {
    font-family: "Ubuntu Light";
    font-style: normal;
    font-weight: 300;
    src: local("Ubuntu Light"), local("Ubuntu-Light"), url("/assets/Ubuntu-L.ttf") format("truetype");
}

.textcontainer {
    position: absolute;
    z-index: 5;

    /* Used to break text completely on Chrome, should be tried again */
    /* mix-blend-mode: exclusion; */
}

#title {
    right: 3em;
    top: 2em;
}

#message {
    left: 3em;
    top: 2em;
}

.no-js #message {
    display: none;
}

#random {
    right: 3em;
    bottom: 2em;
}

#options {
    left: 3em;
    bottom: 2em;
}

.no-js #options {
    display: none;
}

#statusIcon {
    cursor: pointer;
}

.no-js #statusIcon {
    display: none;
}

#noVideo {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.text {
    font-size: 1.8em;
    font-family: "Ubuntu Light", sans-serif;
    font-weight: 300;
    opacity: 0.9;
    color: #FFF;
    z-index: 10;
}

.halftext {
    font-size: 1em;
}

a {
    text-decoration: none;
}

.textpage a {
    color: #CCC;
}

.textpage li a:visited {
    color: #888;
}

.textpage a:hover {
    color: #EEE;
}

.textpage li a:hover {
    display: inline-block;
    transform: rotate(180deg);
    color: #EEE;
}

.textpage a:active,
.textpage li a:active {
    color: #EEE;
}

body {
    background-color: #000;
}

.bgvideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
}

.filledvideo {
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
