/*parent controls center

ROTATING PIZZAAA PROJECT DO IT PLS*/
body{
	background-color: lightblue;
	text-align: center;
	margin-top: 50vh;
	font-family: "lores-12", sans-serif;
	font-weight: 700;
	font-style: normal; 
	}

button{
	width: 200px;
	height: 200px;
	transition: transform 5s;
	font-family: "lores-12", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30;
	background-color: antiquewhite;
	border-radius: 50%;
	box-shadow: 19px 10px 10px ghostwhite;
	transform: 0.5s;
		}
button:hover {
	transform: scale(5);
	
}
button:nth-child(1){
	background-color: ;
	transform: rotate(45deg);
}
button:nth-child(2){
	background-color: ;
	transform: ;
}


