
body {
  background-color: white;
  color: #EB9905;
  font-family: Verdana;
}

.hover-box {
  width: 200px;
  padding: 20px;
  background-color: #FFFFFF;
  color: orange;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px 5px rgba(248, 175, 119, 0.7);
}