	html,
	body {
		margin: 0;
		padding: 0;
		height: calc(100% - 20px);
	}
	
	body {
		background-color: black;
	}
	
	#mtext {
		max-width: 500px;
		background-color: rgb(20,20,80);
		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: darkorchid;
		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: rgba(120,50,180,1);
	}
	

	.question {
		width:100%;
		text-align:center;
		/*border:1px solid black;*/
	}
	
	.info {
		color: lightblue;
		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: rgba(150,80,255,1);
}

.textA 
{
position: relative;
width: 85%;
margin-right: 15%;
text-align: right;
padding: 10px 5px;
background: rgba(150,80,255,1);
}

.textA:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 0;
border-color: rgba(150,80,255,1) transparent;
display: block;
width: 0;
z-index: 1;
bottom: -13px;
right: 20px;
}   

.text:after {
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 0;
border-color: rgba(150,80,255,1) 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: darkorchid;
}

.panswer:after 
{
content: '';
position: absolute;
border-style: solid;
border-width: 15px 15px 0;
border-color: darkorchid 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: darkviolet;
}