/* style.css */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #333;
}

img {
  max-width: 80%;
  height: 200px;
  margin-bottom: 20px;
}

button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 100px;

  /* Effetti hover e active */
  &:hover {
	transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: #3e8e41;
    transform: scale(1.1);
    border-radius: 40px;
  }
  
  &:not(:hover) {
	transition: transform 0.5s ease, background-color 0.5s ease;
}

  &:active {
	transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: #33691e;
    transform: scale(0.9);
    border-radius: 30px;
  }
}