/* CSS file for my simple BMI Calculator Javascript application */

body {
	background-color: LemonChiffon;
}


/* CSS for the calculator itself */
#divBmiCalc {
	margin-right: 20%;
	margin-left:20%;
	width 25%;
	padding 4%;
	text-align: center;
	background-color: #d2f4a9;
	border-style:solid;
	border-color: blue;
	border-width: 2px;
}

#bmiResult {
	background-color: white;
	color: red;
	font-style: !important;
}

/* CSS for the calculation button */
#calcBMI {
	font-size: large;
}