@charset "utf-8";
/* CSS Document */

/* h1 */
h1 {
	color: 0,128,0; /* Shade of green */
}

/* body */
body{
	background-color: #F0F0F0; /* Light grey */
	font-family: Arial, sans-serif;
}

/* h2 */
h2 {
	color: hsl(210, 100%, 50%); /* Blue */
	font-style: italic;
	text-decoration: underline;
}

/* header */
header {
	background-color: cmyk(0, 100, 100, 0); /* Red */
	background-image: url('https://edube.org/uploads/media/default/0001/04/portfolio.jpg');
	background-repeat: no-repeat;
	background-position: center;   
}

/* main */
main {
	background: linear-gradient(to bottom, lightblue, white);
}

/* paragraph */
p {
	font-size: 18px;
}

/* lists */
ul {
	list-style-type: square;
}

li {
	line-height: 1.6;
	padding-left: 10px;
}

/* Hyperlinks */
a:link {
	color: darkblue;
}

a:visited {
	color: purple;
}

a:hover {
	color: red;
}

/* Images */
img {
	width: 100%;
	max-height: 600px;
	border-radius: 10px;
	box-shadow: 5px 5px 10px gray;
}






