body{
	background-color: #ffdede;
}
header{
	background-color: darkred;
	color: black;
	text-align: left;
	font-family: Algerian;
	font-size: xx-large;
	opacity: .85;
}
.rotate {
  animation: rotation 3s infinite linear;
  position: relative;
  top: -10px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
nav{
	background-color: indianred;
	text-align: left;
	opacity: .85;
}
button{
	background-color: slategrey;
	color: black;
	font-style: bold;
	font-size: large;
	height: 35px;
	text-align: left;
	width: relative;
}
button:hover{
	background-color: darkgray;
	color: slateblue;
}
.space{
	width:5px;
    height:auto;
    display:inline-block;
}
aside{
	text-align: right;
}
footer{
	text-align: center;
}
.background{
	background-image: url(images/pizza_slice.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	border: 2px black;
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
.center {
  margin-left: auto;
  margin-right: auto;
}