/* Style the ALL pages */
* {
	margin: 0;
	padding: 0;
	background-color: black;
}

/* Header Style*/
header{
	font-size: 106px;
	width: 100%;
	height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000080;
	font-family: 'Condiment', cursive;
}



/* Form Style*/
input[type=text] {
	width: 95%;
	height: 50px;
	padding: 2px 2px;
	margin: 0px;
	color: #0F5298;
	border: 1px solid #D5F3FE;
	box-sizing: border-box;
	border-radius: 0px;
	font-size: 70px;
}

/* Buttons In The Form Style*/
.button{
	width: 68px;
	height: 60px;
	font-size: 35px;
	font-family: sans-serif;
	margin: 2.5px;
	color: grey;
	cursor: pointer;
	border-radius: 25px;
	outline: none;
}

/* Div Main Style*/
.container{
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px;
	border: 2.5px solid #1974D2;
	border-radius: 20px;
}

#input, answer{
	height: 90px;
	font-size: 150%;
	text-align: right;
	border: none;
	color: grey;
}