* { 
	padding: 0; 
	margin: 0; 
}
body{
	height: 100vh;
	display: flex; 
	align-items: center;
}
#maquina{
	width: 400px;
	height: 540px;
	position: relative;
	margin: auto;
	border: 2px solid #666;
	box-shadow: 10px 10px 5px grey;
	border-radius: 5px;
}
#head{
	width: 400px;
	height: 50px;
	position: relative;
	background-color: #2F4F4F;
	display: flex;
	align-items: center;
	justify-content: center;
}
#body{	
	background-color: #F8F8FF;
	margin-bottom:-4px; /* No sé perquè */
}
#foot{
	width: 400px;
	height: 90px;
	background-color: #2F4F4F;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 3px 3px;
}
h1{
	font-size: 150%;
	display: inline;
	text-transform: uppercase;
	color: #FFA500;
}



.button {
  background-color: #e7e7e7; 
  color: black;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 5px;
}

