/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
* {
	box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/

body {
	width: 500px;
	background: rgb(41, 41, 41);
}

h1 {
	text-align: center;
	color: rgba(255, 76, 76, 0.74);
	margin: 20px 0px;
	font-size: 20px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

#leadInput {
	height: 35px;
	font-size: 16px;
	outline: none;
	border: none;
	border-radius: 0;
	display: block;
	width: 100%;
	margin: 20px 0px;
	margin-top: 10px;
	margin-bottom: 30px;
	padding-left: 5px;
}

div {
	margin: 10px;
	padding: 10px;
	display: block;
	text-align: center;
}

body div a {
	background: rgba(255, 76, 76, 0.74);
	color: white;
	font-size: 16px;
	text-decoration: none;
	padding: 10px;
}

ul {
	list-style-type: none;
	margin: 30px 10px;
	font-size: 16px;
	padding: 10px;
	background: rgba(255, 76, 76, 0.473);
	box-shadow: 0px 0px 30px rgba(255, 76, 76, 0.74);
	display: block;
	overflow: hidden;
	text-align: center;
}

ul li {
	margin: 10px 0;
}

ul li a {
	color: white;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
