/* Basic Selectors */
body {
	background-color : aliceblue;
	color: black;
}

p {
	color: darkblue;
}

h1 { 
	color: steelblue;
	text-shadow: 2px 2px 5px steelblue;
}

h2 {
	color: midnightblue;
}

h3 {
	color: steelblue;
	text-shadow: 2px 2px white;
}

a {
	color: black;
	text-shadow: 0 0 3px #000000;
}

/* List selectors */
ul {
	color: steelblue;
}

ol {
	color: steelblue;
}

li {
	color: dodgerblue;
}

dl {
	color: steelblue;
}

dt {
	color: dodgerblue;
}

dd {
	color: dodgerblue;
}

/* Table Selectors */
table {
	color: dodgerblue;
	 border:1px solid black;
}

th {
	color: steelblue;
	 border:1px solid black;
}

td {
	color: dodgerblue;
	 border:1px solid black;
}

caption {
	color: steelblue;
}

.hobbies {
		background-color: aliceblue; 
		border: 4px solid steelblue;
		padding-top: 10px;
		padding-right:15px;
		padding-bottom: 10px;
		padding-left:15px;
		
		margin-top: 15px;
		margin-right: 0px;
		margin-bottom: 15px;
		margin-left: 0px;
}

.theme1 {
	background-color: lightsteelblue; 
}

.theme2 {
	background-color: lightsteelblue;
}

.theme3 {
	background-color: lightsteelblue; 
}

.theme1 {
	border-style: outset;
}

.theme2 {
	border-style: inset;
}

.theme3 {
	border-style: outset;
}

.img-round {
	border: 2px dashed midnightblue;
	padding: 4px;
}

.img-2 {
	border: 2px solid steelblue;
	padding: 4px;
}

.keyword {
	text-decoration: underline;
	color: midnightblue;
	font-family: cursive;
}

.highlight {
	background-color: lightblue;
}

.highlight2 {
	background-color: lightcyan;
}

/*Transformations*/

.move {
	 width: 150px;
  height: 150px;
  transform: translate(350px,10px);
}

.spin {
	  width: 150px;
  height: 150px;
   transform: rotate(10deg) translate(350px,-60px);
   
}

.woo {
  width: 1500px;
  height: 100px;
  background-color: lightblue;
  transition: width 1s;
}

.woo:hover {
  width: 300px;
}

.curve {
  width: 100px;
  height: 20px;
}

#curve {
  transform: skew(15deg);
}

.z {
  width: 150px;
  height: 180px;
}

#z {
  transform: rotateZ(10deg) translate(20px,10px);
}

.rain {
  width: 160px;
  height: 40px;
  background-color: white;
  animation-name: rain;
  animation-duration: 4s;
}

@keyframes rain {
  from {background-color: steelblue;}
  to {background-color: white;}
}
/*gradients*/
#bottomsup {
  height: 410px;
  background-image: linear-gradient(to top, white, lightblue);
}

#top {
  height: 195px;
  background-image: linear-gradient(to bottom, white, lightblue);
}

#di {
  height: 80px;
  background-image: linear-gradient(to bottom right, lightblue, white);
}