<!DOCTYPE html>
<html>
<head>
    <title>CSS Example</title>
    <link rel="stylesheet" href="style.css">
</head>

body {
}
h1 {
  color: aqua;
  background-color: #305CDE;
  font-size: 60px;
}
h2 {
  color: teal;
  font-size: 45px;
  background-color: #FFED29;
}
h3 {
  color: red;
  font-size: 30px;
  font-family: monospace;
  padding-top: 50px;
}
h4 {
  font-size: 25px;
}
p {
  font-size: 20px
}
body {
  text-align: center;
  background: #93CAED;
}
img {
  padding: 20px;
  
}
marquee {
  color: teal;
  font-size: 45px;
  background-color: #FFED29;
}
article {
			width: 1100px;
			padding: 20px;
			margin: auto;
			background-color: rgba(0,0,0,.2);
			border: 8px solid #305CDE;
}
a:hover {
		background-position: center;
	}

	a:active {
		background-position: bottom;
	}