@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


@font-face {
  font-family: Burger Quiz;
  src: local("Burger Quiz"),
       local("Burger Quiz"),
       url(burger-quiz.ttf);
}


html {
	background-color: #000;
}
html, body {
	font-family: "Burger Quiz", Anton;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;

}


#reponse { display: none; }


#video-container {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	overflow: hidden;
	z-index: -1;
}
#video-container > video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (min-aspect-ratio: 16/9) {
	#video-container > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
	#video-container > video { width: 300%; left: -100%; }
}
@supports (object-fit: cover) {
	#video-container > video {
	  top: 0; left: 0;	
	  width: 100%; height: 100%;
	  object-fit: cover;
	}
}



#score {
	display: flex;
	height: 100%;
	align-items: center;
	text-align: center;
	justify-content: center;
	background: #000;
	width: 100vw;
	height: 100vh;
}

#score > div {
	display: flex;
	font-size: 40em;
	line-height: 200px;
	color: #fff;
	box-sizing: border-box;
	padding: 80px;
	padding-top: 150px;
	flex: 1;
	text-align: center;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.home #score > div {
	font-size: 10em;
	padding-top: 50px;
}


#score .ketchup,
.button.button-ketchup {
	background-color: #a41c00;
	color: #fff;
}


#score .mayo,
.button.button-mayo {
	background-color: #e7ad00;
	color: #000;
}



#form-score {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	background-color: #000;
	margin: 0;
}

#form-score input {
	display: none;
}

#form-score button {
	padding: 8px 20px;
	font-size: 20px;
}

a.button {
	-webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;	
}

.button {
	display: inline-block;
	box-sizing: border-box;
	background-color: #fff;
	color: #000;
	font-family: Arial, sans-serif;
	font-size: 20px;
	line-height: 100%;
	font-weight: 400;
	padding: 8px 25px;
	border: solid 1px #000;
	outline: none;
}
.button:hover {
	background-color: #ddd;
	color: #000;
}




	