body{
background-color: #89c1a9;
}

input[type=text]{
	width: 300px;
	height: 100px;
	//background-color: #ced5db;
	//opacity:0.8;
	border: 2px solid #a7abaf;
	border-radius: 5px;
	
	text-align: center;
	font-size: 75px;
	//padding: 10px 8px 0px 8px;
	padding-bottom: 5px;
	//margin-right: 5px;
	//outline:none;
	
}
/*
input[type=text]{
	width: 150px;
	background-color: #ced5db;
	opacity:0.8;
	border: 2px solid #a7abaf;
	border-radius: 10px;
	text-align: center;
	font-size: 16px;
	padding: 11px 11px 11px 11px;
	margin-right: 5px;
	outline:none;
}
*/

prefs {
	background-color: #dddddd;
	font-size: 10px;
}

input[type=text]:focus {
    border: 2px solid #555;
}

::placeholder {
    color: black;
    opacity: 0.8;
}
/*
.myContainer{
    //width:1000px;
	background-color: rgb(229, 229, 229, 0.6);
	//margin: auto;
    border: 3px solid #adadad;
}
*/

/*
.choiceContainer{
	width: 250px;
	margin: auto;
	padding: 0px 10px 10px 10px;
	background-color: #e2e2e2;
	border: 2px #2d2d2d;
	border-style: dashed solid;
	border-width: 7px;
}
*/

.choiceText{
	margin: auto;
	padding: 5px 10px 10px 10px;
	font-family: "Times new roman";
	font-size: 25px;
}

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 93px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 18px;
	text-align: left;
    user-select: none;
}


/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
	margin-left:65px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
	border: 1px solid;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #5A7E99;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

.allButtons{
	background-color: #EDA386;
    border: 2px solid #C16D4C;
	border-radius: 10px;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
	margin-left: 5px;
}

.allButtons:hover{
	background-color: #C16D4C;
	border: 2px solid #8c4e36;
	border-radius: 10px;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/*
.questionContainer{
	width: 250px;
}
*/

#question{	
	color: #515151;
	font-family: arial;
	font-size: 75px;
	text-align:center;
	margin:auto;
	padding: 10px 8px 0px 8px;
}

.questionBox{
	width: 300px;
	height: 100px;
	background-color: rgb(142, 244, 193);
	margin-bottom: 5px;
	border: 2px solid #a7abaf;
	border-radius: 5px;
}

/*
.questionBox{
	width: 80px;
	height: 40px;
	background-color: rgb(206, 213, 219, 0.6);
	margin-bottom: 5px;
	border: 2px solid #a7abaf;
	border-radius: 5px;
}
*/

.questionText{	
	color: #000000;
	font-family: arial;
	font-size: 25px;
	text-align:center;
	margin:auto;
	padding-bottom: 5px;
}

.answerContainer{
	height: 20px;
}

#points{
	font-size: 18px;
}

li.correctAnswer {
    background-color:#646464;
    color: #00FF00;
}