@charset "UTF-8";
/* Comment */

body {
	padding-bottom: 5%;
	padding-left: 3%;
	padding-right: 3%;
	width: 80%;
	margin: auto;
	background-color: floralwhite;
	font-family: "Quicksand", sans-serif;
	
}

/* Group Selector*/

			
h1, h2, h3, h4 {
	font-family: "Borel", cursive;
    font-weight: 400; 
	font-style: normal;
	color: sienna;
		}


h1 {
	text-transform: capitalize;
	letter-spacing: 12px;
		}
		
p {
	color: #3B2015
		}


table, th, td {
	border-collapse: collapse;
	border: 2px solid #3C1C0C;
		}

/*adjacent Sibling Selector*/

div + p {
	background-color:aliceblue;
	padding: 2%;
	text-align: center;
	width: 80%;
	margin: auto;
	border-radius: 15px;
	border:1px solid #D08015;
	clear: both;
}



/* Attribute Selector*/

a[href^="https://"] {
	color: chocolate;
	text-decoration: none;
	font-weight: bold;
}



input[type="submit"] {
	background-color: antiquewhite;
	bolor: white;
	padding: 10px;
	border-radius: 20px;
	width: 80px;
	border: 0;
}

input[type="reset"] {
	background-color: gray;
	color: white;
	padding: 10px;
	border-radius: 20px;
	width: 80px;
	border: 0;
}

img[alt="img left"] {
	float:left;
	margin-right:4%;
	margin-bottom: 2%;
}

img[alt="img right"] {
	float:right;
	margin-left:4%;
	margin-bottom: 2%;
}


#submit {
	background-color: antiquewhite;
	border: 1px solid #DAAC91;
	with: 150px;
		}
		

/* ID and Class Selector */


#thead {
	background-color: lightcoral;
		}
		
.title {
	background-color: #E4D8D2;
	color: #3C1C0C;
		}



/* Pseudo-classes and Pseudo-elements */

a:hover{
	color: darksalmon;
}

input[type="submit"]:hover {
			background-color: gray;
			color: white;
			cursor: pointer;
}

input[type="reset"]:hover {
			background-color: antiquewhite;
			color: #DAAC91;
			cursor: pointer;
		}

		
input:focus, textarea:focus {
			background:antiquewhite;
		}
		
.firstpara::first-letter {
			font-size: 1.5em;
		}
		
		
		/* Complex Selectors */
		







