/**
 * index.css
 * - Add any styles you want here!
 */

body {
	margin: 0 auto;
	background-image: url("https://cdn.wallpapersafari.com/42/39/shtCqv.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.container {
	display: grid;
	grid-template-columns: 300px 600px 200px;
	grid-template-rows: auto;
	grid-template-areas:
		"header header header"
		"main reader sidebar"
		"footer footer footer";
	justify-content: center;
}
.item-a {
	grid-area: header;
	background-color: PowderBlue;
	text-align: center;
	border: 0.5px solid #000;
	padding: 1em;
}
.item-b {
	background-color: #cccccc;
	background-image: linear-gradient(PowderBlue, LightCyan, DarkSeaGreen);
	grid-area: main;
	background-color: LightCyan;
	text-align: center;
	border: 0.5px solid #000;
	padding: 1em;
}
.item-c {
	background-color: #cccccc;
	background-image: linear-gradient(PowderBlue, LightCyan, DarkSeaGreen);
	grid-area: reader;
	background-color: LightCyan;
	border: 0.5px solid #000;
	padding: 1em;
}
.item-d {
	background-color: #cccccc;
	background-image: linear-gradient(PowderBlue, LightCyan, DarkSeaGreen);
	grid-area: sidebar;
	background-color: LightCyan;
	text-align: center;
	border: 0.5px solid #000;
	padding: 1em;
}
.item-e {
	grid-area: footer;
	background-color: DarkSeaGreen;
	text-align: center;
	border: 0.5px solid #000;
	padding: 1em;
}

// Icon placement //

icon {
	padding: 1em;
	border: 0.5px solid #000;
	background-image:  url(https://louisville.edu/enrollmentmanagement/images/phone-icon/image);
	
}

// Font Family Selection //

h3 {
	font-family:  Arial;
	font-size:  30pt;
}

li {
	font-family: Arial;
	font-size: 11pt;
	text-align: left;
	
}

p {
	font-family: Arial;
	font-size: 11pt;
	padding: 1em;
}

/** for contact me form **/
.formcontainer {
	padding: 20px 20px 20px 20px;
	margin: 10px 10px;
	border-radius: 0.35em;
}

/* Remove outline of all elements on focus */
*:focus {
	outline: 0;
}

/* Add styles to 'label' selector */
label {
	font-size: 10pt;
}

/* Add styles to 'input' and 'textarea' selectors */
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 1px;
	box-sizing: border-box;
	margin-top: 1px;
	margin-bottom: 1px;
	resize: vertical;
	background-color: LightCyan;
	font-family: Arial;
	font-size: 14pt;
	font-style: Bold;
}

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

/* Add styles to the submit button */
input[type="submit"] {
	background: LightCyan;
	margin: 0 auto;
	outline: 0;
	color: Black;
	border: 0;
	padding: 5px 5px;
	border-radius: 3.5px;
	transition: all ease-in-out 0.1s;
	position: relative;
	display: inline-block;
}

/* Style 'hover' property */
input[type="submit"]:hover {
	background: LightBlue;
}