/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	background-color: #F9FFD6;
	color: black;
	font-family: "Comic Sans MS", "Comic Sans";
	width: 50%;
	margin: 0 auto 40%;
	overflow: hidden;
}
.fat{
  padding:50px;
}
.theload{
  width: 30%;
  animation: 0.5s linear 0s infinite normal none running rotation;
}

@keyframes smoothRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating-image {
  animation: smoothRotate 2s linear infinite;
  width:30%;
}

h1{
	text-align: center;
}
p{
	background-color: yellow;
	border-radius: 15px;
	padding: 5px;
}
.myUL {
  display: inline-block;
  text-align: left;
}

.overcomplication {
    text-align: center;
  }