
* {
	font-family:;
	font-weight: 400;
}

/* Remove outline of all elements on focus */

*:focus {
	outline: 0;
}

body {
	background: #;  /* Set background color to #263238*/
}

h3 {
	text-align: center;
}

/* Add styles to 'container' class */

.container {
	padding: 5px 24px 24px 24px;
	margin: 5px 20px;
	background: #;
	border-radius: 4px;
}

/* Add styles to 'label' selector */

label {
	font-size: 0.85em;
	margin-left: 0px;
}

/* Add styles to 'input' and 'textarea' selectors */

input[type=text],input[type=email], textarea {
    background: #000;
	width: 100%;
    padding: 10px;
    border: 1px solid grey;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
	opacity: 0.5;
    resize: vertical;
}

/* Add styles to show 'focus' of selector */

input[type=text]:focus,input[type=email]:focus, textarea:focus {

	border: 1px solid #ccc;
}

/* Add styles to the submit button */

input[type=submit] {
	background: #000;
	opacity: 0.5;
	margin: 0 auto;
	outline: 0;
	color: #999;
	border: 1px solid grey;
	padding: 10px 24px;
	border-radius: 4px;
	transition: all ease-in-out 0.1s;
	position: relative;
	display: inline-block;
	text-align: center;
}

/* Add styles for 'focus' property */

input[type=submit]:focus {
	background: #000;
	opacity: 0.5;
	color: #FFF;
}

/* Style 'hover' property */

input[type=submit]:hover {
	background: #000;
	opacity: 0.9;
}

/* Align items to center of the 'div' with the class 'center' */
.center {
	text-align: center;
}


