.result
{
	font-size: 30px;
	color: black;
}

.normalweight { color: green; }
.overweight { color: gold; }
.obeseweight { color: red; }

body
{
	font-family: 'Quicksand', sans-serif;
	text-align: center;
	background-color: #ECF0F3;
	color: black;
}

ul
{
	text-align: center;
	list-style: inside;
}

button
{
	width: 200px;
	height: 50px;
	background-color: #E3E6EC;
	box-shadow: -10px -10px 20px #ffffff, 10px 10px 20px #9b9b9b;
	border-radius: 30px;
	border: none;
	font-size: 16px;
}

input[type=text]#weight,#height
{
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	background-color: white;
	background-image: url('../images/scales.png');
	background-position: 10px 10px;
	background-repeat: no-repeat;
	padding: 12px 20px 12px 40px;
	outline: none;
}

input[type=text]#height { background-image: url('../images/height.png'); }
input[type=text]:focus { box-shadow: -5px -5px 10px #ffffff, 5px 5px 10px #D1D9E6; }

