
body {background-image:Quiche.png);
  background-size: cover;
  background-position: center;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
button {
  background-color: #4CAF50; 
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
  background-color: #45a049;
  transform: scale(1.1);
}

button:active {
  background-color: #367c39; 
  transform: scale(1); 
}
button {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

button:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

