@font-face {
    font-family: 'Source Sans Pro';
    src: url('fallofmen/fonts/SourceSansPro-Regular.ttf');
}

@font-face {
    font-family: 'Josefin Slab';
    src: url('fallofmen/fonts/JosefinSlab-MediumItalic.ttf');
}

::-moz-selection { /* Code for Firefox */
    color: #c8c8c8;
    background: #010101;
}

::selection {
    color: #c8c8c8;
    background: #010101;
}

*{
    margin:0px;
    padding:0px;
}

body{
    background-color: #010101;
    display: flex;
    align-content: center;
    justify-content: center;
    width: auto;
    height: 100vh;
    overflow: hidden;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #c8c8c8;
}

a{
    color:#c8c8c8;
}

a:hover{
    color:#010101;
}

.fullscreen-video {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -10;
}

.paragrapher{
    margin-top: 50px;
}

.side-btn{
    position:fixed;
    bottom:5vh;
    left:20px;
    font-family: 'Josefin Slab', serif;
    font-size: 24px;
    color:#c8c8c8;
    cursor:pointer;
}
.title{
    font-size: 40px;
    color:#c8c8c8;
    font-family: 'Josefin Slab', serif;
    line-height: 45px;
}

.hyphen{
    position: absolute;
    top:63px;
    background-color: rgb(200, 200, 200);
    width: 40px;
    height: 2px;
}

.time-legend{
    font-family: 'Josefin Slab', serif;
    font-size: 14px;
    position: absolute;
    right: 7px;
    width: 150px;
    text-align: right;
}

#close-btn{
    left:0px;
}

#clear-btn{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

#time-legend-start{
    top:-7px;
}

#time-legend-middle{
    top:50%;
}

#time-legend-end{
    bottom:-5px;
}

#time-line{
    position:absolute;
    top:5vh;
    right:10px;
    background-color: #626262;
    width:1px;
    height:90vh;
}

#time-bar{
    width:3px;
    margin-left:-1px;
    height:0.1vh;
    background-color: #c8c8c8;
}

#video-start{
    opacity:0.5;
}

#video-middle{
    visibility: hidden;
}

#video-end{
    visibility: hidden;
}

#info{
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 0px;
    max-width: 370px;
    transform: translateX(-400px);
}

#stats-bottom{
    font-family: 'Josefin Slab', serif;
    position: absolute;
    top:80px;
    right: 20px;
    text-align: right;
    width:500px;
}

#counter{
    font-size: 24px;
}

#no-hls{
    position: absolute;
    font-family: 'Josefin Slab', serif;
    font-size: 40px;
    top:50%;
    visibility: hidden;
}

#notification{
    position:absolute;
    bottom: 5vh;
    text-align: center;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 10px;
    border: solid #626262 0.5px;
}

/* #date{
    font-size: 14px;
} */

/* ANIMATIONS */
.slideIn{
    animation: .4s slideIn ease-out forwards;
}
@keyframes slideIn{
    from{
        transform: translateX(-400px);
    }

    to{
        transform: translateX(0px);
    }   
}

.fadeOut{
    animation: .25s fadeOut ease-out forwards;
}
.fadeOutSlow{
    animation: 1s fadeOut ease-out forwards;
}
@keyframes fadeOut{
    from{
        opacity: 1.0;
    }
    to{
        opacity: 0.0;
    }
}

/* LOADING */
#loading{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* #loading-text{
    font-family: 'Josefin Slab', serif;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
} */

#circle {
    margin-left:40%;
    margin-top:20px;
    height: 50px;
    width: 50px;
    border: 4px rgba(200, 200, 200, 0.25) solid;
    border-top: 4px #c8c8c8 solid;
    border-bottom: 4px #c8c8c8 solid;
    border-radius: 50%;
    -webkit-animation: spin1 1s infinite linear;
            animation: spin1 1s infinite linear;
}
  
@-webkit-keyframes spin1 {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
}
}
@keyframes spin1 {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
}
}