body {
background: url(https://i.imgur.com/8VZ3w0x.mp4) no-repeat center center fixed; 
background-color: black;

cursor: url(images/favicon.html), auto;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
font-family: 'Courier New', arial;
color: #c700ff;
 -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  overflow: hidden; /* Hide scrollbars */
text-shadow: 1px 1px 1px rgba(0,0,0,255);
}


body::-webkit-scrollbar {
  display: none;
}

#bg {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1000;
	background-size: cover;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	 -webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
}


pre {
    text-align: center;
    font-family: monospace;
}
#center {               
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);    
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#clockDisplay {
    position: relative;
    top: 590px
}

.container {
    position: relative;
	top: 870px
}

.marque {
    width: ;
    overflow: hidden;
    display: inline-block;
    margin-bottom: -3px;
}


 video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 135%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
	overflow: hidden;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
 }
 

 
 #main {
    height: 100px;
    width: 300px;
}

.pictureContainer {
	
    display: inline-block;
    float: left;
    height: 84px;
    margin: 5px;
    overflow: hidden;
    width: 300px;
	box-shadow: 0px 0px 25px -15px rgba(0,0,0,0.75);
}
 
.pictureContainer img {
    position: relative;
    top: 0px;
    animation-duration: .3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
 
.pictureContainer img.slideIn {
    animation-name: inKeyframes;
}
 
.pictureContainer img.slideOut {
    animation-name: outKeyframes;
}
 
@keyframes inKeyframes {
	70% {
        top: -100px;
    }
    100% {
        top: -85px;
    }
}
 
@keyframes outKeyframes {
    70% {
        top: 20px;
    }
    100% {
        top: 0px;
    }
}