@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
body {
	background: black;
	background: linear-gradient(43deg, #00dbde 0%, #fc00ff 100%);
	color: white;
	font-family: "Roboto", sans-serif;
	width: 100%;
	height: 100%;
	margin: 0;
}

main {
	width: 100%;
	height: 100vh;
	position: relative;
}

#headline {
	font-weight: 300;
	text-align: center;
	font-size: 1.15em;
	margin-bottom: 10px;
	margin-top: 0px;
	padding-top: 30px;
}

#question {
	font-weight: 700;
	text-align: center;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 30px;
	font-size: 1.5rem;
}

#center-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	position: absolute;
	top: 30vh;
}
#center-buttons #buttons {
	display: grid;
	grid-template-columns: 150px 150px;
	grid-template-rows: 150px 150px;
	column-gap: 10px;
	row-gap: 10px;
}
#center-buttons #buttons .button {
	width: 100%;
	height: 100%;
	color: white;
	font-weight: 400;
	font-size: 1.25em;
	border: 5px solid white;
	border-radius: 5%;
	background: rgba(0, 0, 0, 0);
}
#center-buttons #buttons .button:hover {
	background: rgba(255, 255, 255, 0.1);
}

#center-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 30px;
	position: absolute;
	bottom: 50px;
	width: 100%;
	font-weight: 800;
}
#center-status * {
	margin: 0;
}
#center-status p {
	margin-bottom: 10px;
}
#center-status #correct {
	color: #e0ffe1;
}
#center-status #incorrect {
	color: #ffe0e0;
}

footer {
	position: absolute;
	bottom: 15px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}
footer select {
	width: 40%;
	max-width: 100%;
	box-sizing: border-box;
	display: block;
	color: white;
	background: rgba(0, 0, 0, 0);
	padding: 0.6em 0.6em;
	border: 3px solid white;
	border-radius: 5%;
	text-align: center;
	font-weight: 400;
	font-size: 0.7em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

#info {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	background-color: rgba(0, 0, 0, 0.7);
}
#info .title {
	text-align: center;
}
#info .title h2 {
	font-weight: 800;
	font-size: 2.5em;
}
#info .title h3 {
	font-weight: 400;
	font-size: 1.5em;
}
#info .title p {
	font-weight: 300;
	font-size: 1em;
	padding-top: 10px;
}
#info .brendan {
	text-align: center;
}
#info .brendan h4 {
	font-size: 1.25em;
	padding-bottom: 20px;
}
#info .brendan .inlineButtons {
	display: flex;
	flex-direction: row;
}
#info .brendan .inlineButtons a {
	padding: 15px 15px 15px 15px;
	border: 3px white solid;
	border-radius: 5%;
	color: white;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.2 ease-in-out;
}
#info .brendan .inlineButtons a:visited {
	color: white;
}
#info .brendan .inlineButtons a:last-child {
	margin-left: 20px;
}
#info .brendan .inlineButtons a:hover {
	border-color: #d9fffb;
}
#info .credits {
	text-align: center;
	font-weight: 300;
}
#info .credits p {
	padding-bottom: 5px;
}
#info .credits p a {
	color: white;
}
#info .credits p a:visited {
	color: white;
}
#info * {
	padding: 0;
	margin: 0;
}
#info img {
	border-radius: 50%;
}

#info-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 25px;
}
#info-btn svg {
	fill: white;
	color: white;
}

.hidden {
	display: none;
	visibility: hidden;
}
