/* Style for the clickable box */
.clickable-box {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Style for hover effect */
.clickable-box:hover {
  background-color: #2980b9;
}