@import url('https://fonts.googleapis.com/css?family=Oswald');

@font-face 
{
    font-family: gravity;
    src: url(../fonts/gravity.otf);
}

@font-face 
{
    font-family: Highlander;
    src: url(../fonts/Highlander.ttf);
}

@keyframes slideright {
    0%   {margin-left:0px}
    100% {margin-left:110% }
}
@keyframes zoomin {
    0% {width:100%;height: 100%; opacity: 0.3}
    50% {width: 300%;height: 300%;opacity: 0}
    100% {width:100%;height: 100%;opacity:0.3}
}

body
{
    overflow: hidden;
    background-color: rgb(30,30,30);
    box-shadow: 0 0 500px rgba(0,1,1,1) inset;
    background-color: rgb(30,30,30);
    margin: 0;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
  filter: contrast(1.5);
}

.video-foreground, .video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.slideright {
    animation-name: slideright;
    animation-duration: 3.2s;
}

.zoomin
{
    
    animation-name: zoomin;
    animation-duration: 4.2s;
    justify-content: center;
    

}

*
{
    font-family: gravity;
    color: rgb(230,230,230);  

    animation-name: hammer;
    animation-duration: 10s;
}

.logo
{
    display: block;
    margin: auto;
	padding-top: 35%;
	z-index:1;
}

.content-container {
    width: 600px;
    height: auto;
    background-color: red;

    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
	background-color: rgba(255,255,255,0.1);
	z-index:-1;
}

/*
    Progressbar styling.
*/
progress
{
    margin-top: 5px;
}

progress[value] 
{
   -webkit-appearance: none;
   appearance: none;

   width: 100%;
   height: 30px;
}

progress[value]::-webkit-progress-bar
{
  background-color: rgb(60,60,60);
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress::-webkit-progress-value
{
    animation-name: example;
    animation-duration: 10s;
    animation-play-state: running;
    border-radius: 20px;
    background-size: 60px 30px, 100% 100%, 100% 100%;
}

.pbCollapse
{
    width: 24.63% !important

}

/*
    General purpose classes.
*/
.stick-to-right
{
    float:right;
}

.hide 
{
    display: none;
}

.loading-text
{
    display: inline-block;
}

/*
    Messages styling + fade in and fadeout animations
*/
#message 
{
    opacity:1;
    transition: opacity 0.3s; 
}

/*
    Music player styling.
*/
#music-info
{
    padding:20px;
}

#player
{
    display: none;
}

#now-playing
{
    font-size: 0.9em;
    margin: 0;
    padding: 0;
}

.icon-button
{
    color:white;
    font-size: 24px;
    display: inline-block;
    padding-top: 10px;

}

#volumeSlider
{
    width: 200px;
    height: 15px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.1);
    outline: none;
    position: absolute;
    margin-top: 15px;
    margin-left: 10px
}

#volumeSlider::-webkit-slider-thumb 
{
    -webkit-appearance: none;
    width: 10px;
    height: 25px;
    background: white;
}

#cursor
{
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

#log
{
    list-style-type: none;
    font-size: 0.66em;
    margin: 0;
    padding-right: 10px;
    padding-bottom: 10px;
    position:fixed;
    right:0;
    bottom:0;
}

#log > li
{
    color: red;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground { 
	  height: 300%; 
	  top: -100%; 
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground { 
	  width: 300%; 
	  left: -100%; 
  }
}

@media all and (max-width: 600px) {
	.vid-info { 
		width: 50%; 
		padding: .5rem; 
}

.vid-info h1 { 
	margin-bottom: .2rem;
	}
}

@media all and (max-width: 500px) {
.vid-info .acronym { 
		display: none; 
	}
}

.loading {
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  	font-family: 'Oswald', sans-serif;
	font-size: 30px;
  text-transform: uppercase;
  color: #9cd80e;
  letter-spacing: 10px;
}
.loading:after {
  content: "";
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  -webkit-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  background-color: #9cd80e;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 6px;
}

@-moz-keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
@-webkit-keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
@keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
.loading {
  position: absolute;
	padding-top: 70px;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.line1 {
	width: 80%;
height: 4px;
margin-left: auto;
margin-right: auto;
background-color:white;
border: 0 none;
margin-top: 80px;
margin-bottom:10px;
}

.line2 {
	width: 50%;
height: 4px;
margin-left: auto;
margin-right: auto;
background-color:white;
border: 0 none;
margin-top: 15px;
margin-bottom:10px;
}

.line3 {
	width: 70%;
height: 4px;
margin-left: auto;
margin-right: auto;
background-color:white;
border: 0 none;
margin-top: 15px;
margin-bottom:10px;
}

.tekst1 {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	text-align: center;
	color: #9cd80e;
	text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
}

.discord {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-align: center;
	color: white;
	text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
}

.tekst2 {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	text-align: center;
	color: #9cd80e;
	text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
}

.tekst3{
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	text-align: center;
	color: #9cd80e;
	text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
	padding-bottom: 10px;
}

.klawiszologia {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	text-align: center;
	color: white;
	text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
}

.partner {
   vertical-align: middle;
   text-align: center;
}