* {
     box-sizing: border-box;
}
 body {
     background-color: black;
     margin: 0;
     font-family: new_x_digital_tfbregular;
     font-size: 36px;
     min-width: 100%;
     min-height: 100%;
}
 .youAreAwake {
     position: absolute;
     top: 0;
     bottom: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
}
 .youAreAwake video {
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%,-50%);
}
 .status {
     position: fixed;
     top: 0;
     background: rgba(0, 0, 0, 0);
     color: #000000;
     width: 100%;
     padding: 20px;
}
 .glow {
     position: fixed;
     top: 0;
     background: rgba(0, 0, 0, 0);
     color: #660000;
     animation: blink-text 1.9s linear infinite;
     width: 100%;
     padding: 20px;
}
 @keyframes blink-text {
     0% {
         opacity: 0;
    }
     50% {
         opacity: 1;
    }
     100% {
         opacity: 0;
    }
 }