@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
.myclear {
	clear: both;
}
body {
	font-family: 'Orbitron', sans-serif;
	font-weight: 400;
	font-size: 100%;
	min-height: 100vh;
}
#container {
	max-width: 1200px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0px 0px 20px 10px rgba(90, 90, 90, 0.5);
}
header {
	text-align: center;
}
header h1{
	padding: 2%;
	color: #777;
	font-size: 30px;
	line-height: 1;
}
main {
	padding:1%;
}

main a{
	text-decoration: none;
}

main p, main h2, main h3{
	padding:8px;
}

table{
	width:100%;
}

table th{
	text-align: left;
	font-weight: 700;
	font-size: 120%;
	padding:8px;
	color: white;
	background-color: black;
}

table td{
	text-align: left;
	font-weight: 400;
	font-size: 110%;
	padding:8px;
}


tr:nth-child(odd) td {
  background-color:#D1FFF3;
}

tr:nth-child(even) td {
  background-color:#DDFF99;
}

tr.tableTotals td{
	background-color:#DFDFDF;
	font-size: 120%;
	font-weight: 800;
}

.totalQuestions {
	color:#ff1717;
	font-size: 200%;
}

button{
	padding:8px;
}

.vpfull{
width: 100%;
box-sizing: border-box;
}

.menu {
color: #D8CE98;
background-color:#6E080A;
font-size: 20px;
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 20px;
border-radius: 25px;
padding: 10px;
}

.dropdown {
padding: 20px;
}
