body {
	background-color: silver;
	font-family: consolas;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

li {
	padding: 8px;
	font-size: 30px;
	list-style: none;
}

h1 {
	color: orange;
	background-color: black;
	font-size: 60px;
	font-weight: bold;
	border-style: solid;
	border-color: red;
	border-width: 8px;
	border-radius: 20px;
	margin-left: 5%;
	margin-right: 5%;
	width: 50%;
	box-shadow: 10px 10px;

}

input {
	width: 200px;
	font-size: 40px;
	padding: 8px;
	box-sizing: border-box;
	font-weight: bold;
}

#r { 	background-color: #f1948a; }

#v { 	background-color: #82e0aa; }

#b { 	background-color: #85c1e9; }

button {
	background-color: #c39bd3 ;
	font-size: 30px;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: lightblue; /* #943126 */
	transition: 500ms;
	color: white;
	text-shadow: 4px 4px 8px black;
}