	html,
	body {
		margin: 0;
		padding: 0;
		height: calc(100% - 20px);
		background-color: black;
	}
	
	body {
		background-color: black;
	}
	
	#mtext {
		max-width: 500px;
		background-color: #2b1800;
		color: white;
		margin: auto;
		padding: 20px;
		min-height: 100%;
	}
	/*#mtext:hover {
		background-color: darkblue;
	}*/
	
	p {
		border-bottom: 3px solid black;
		padding-top: 5px;
		transition: border 2s;
	}
	
	button {
		background-color: #823f09;
		border: 0;
		width: calc(50% - 10px);
		min-width: 70px;
		min-height: 50px;
		padding: 5px 15px;
		margin: 5px;
		font-size: 0.8em;
		color: white;
	}
	button:hover {
		background-color: #a55500;
	}
	
	.text {
		margin-right: 15%;
		text-align: center;
		/*border:1px solid black;*/
	}
	
	.question {
		width:100%;
		text-align:center;
		/*border:1px solid black;*/
	}
	
	.info {
		color: #ffb77c;
		text-align: center;
	}
	
	.restart {
		color: black;
		padding: 20px;
		border: 2px solid white;
		background-color: lightblue;
		text-align: center;
	}
	
	.clicked {
		background-color: blue;
	}

	.panswer {
		
	}

	.panswer button {
		display: none;
	}

	.panswer button.clicked {
		display: inherit;
	}

.text 
{
position: relative;
width: 85%;
margin-right: 15%;
text-align: left;
padding: 10px 5px;
background: #823f09;
}

.text:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 0;
border-color: #823f09 transparent;
display: block;
width: 0;
z-index: 1;
bottom: -13px;
left: 20px;
}     

.panswer 
{
position: relative;
width: 85%;
margin-left: 15%;
text-align: right;
padding: 10px 5px;
background: #a55500;
}

.panswer:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 0;
border-color: #a55500 transparent;
display: block;
width: 0;
z-index: 1;
bottom: -13px;
right: 20px;
}
    

	a, a:visited {
		color:white;
	}

input[type=text] {
	width: 80%;
	font-size: 16px;
	border-radius: 0;
	background-color: #a55500;
	color: white;
}