body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
}

.hover-dover {
  background-color: #6c63ff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hover-dover:hover {
  background-color: #ff6584;
  border-radius: 30px;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
