* {
	font-style: italic;
	color: red;
	font-family: "Comic Sans MS";
}
#hlink {
	font-size: 5px;
}
#emal {
	color: blue;
}
.potat-img {
	width: 300px;
	max-height: 300px;
}
.potat-img:hover {
	animation: spin 0.25s linear infinite;
}
#awsum_sawse::before {
	content: "This website is ceritfied awesome sauce";
	display: inline-block;
	animation: spin_txt 3s linear infinite;
	font-size: 25px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin_txt {
  from {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-90deg);
  }
  50% {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0deg);
  }
}
#main {
	color: yellow;
}
#top {
	font-size: 20px;
}
body {
	background-color: black;
}
