@charset "utf-8";
/* CSS Document */
html {
	height: 100%;
	width: 100%;
	margin: 0;
}

body {
	background-image: linear-gradient(
		rgba(28,28,28,0.45),
		rgba(28,28,28,0.65) ),
		url("Bilder/Pub-background.jpg");
	height: 100%;
	width: 100%;
	margin: 0;
	position: absolute;
	color: white;
	font-family: arial;
		
}

h1 {
    text-align: center;
    font-size: 80px;
    margin: 20px;
}

.center {
	text-align: center;
    width: 85%;
	margin: auto;
}

.box {
	background-color: #2c3e50;
    border: white 2px solid;
    border-radius: 10px 5px 10px 5px;
    height: 20%;
	margin-top: 30px;
	font-size: 60px;
    font-weight: 900;
}

.question {
	min-height: 112px;
}

.loadingBar {
	
	height: 85px;
	text-align: left;
}

.loadingBar:before {
	content: attr(data-label);
    position: absolute;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.91) 1px 1px 10px;
    left: 0;
    right: 0;
	font-size: 60px;
    font-weight: 900;
}

.progress-bar {
    width: 100%;
    height: 20px;
    border-radius: 8px;
    margin-top: 5px; 
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.loadingBar-inside {
    height: 100%;
    border-radius: 10px 5px 10px 5px;
    width: 100%;
    background-color: #34495e;
    display: inline-block;
    
    background-image: linear-gradient(
        -45deg, 
        rgba(255, 255, 255, .2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, .2) 50%, 
        rgba(255, 255, 255, .2) 75%, 
        transparent 75%, 
        transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;;
    overflow: hidden;
	font-size: 60px;
    font-weight: 900;
	transition: width 20s linear;
}

.loadingBar-inside span {
	background-color: #f1c40f;
	text-shadow: #000000c4 1px 1px 10px;
	width: 0%;
	text-align: center;
}

.highscore {
	font-size: 50px;
    font-weight: 900;
    text-align: left;
    padding-left: 15px;
}

.highscore p {
	margin: 0px;
}

.higscore-single {
	
}

.highscore-single img {
	height: 40px;
    margin-bottom: -5px;
}

.highscore img {
	height: 40px;
    margin-bottom: -5px;
}

.highscore-row {
	width: 50%;
}
/*
.question p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
*/