.hello-world-component {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background-color: #ccf;
  box-shadow: 0 4px 6px rgb(0, 0, 0, 0.1);
}

.hello-world-component .greeting {
  margin-bottom: 15px;
  font-size: 24px;
}

.hello-world-component .content {
  margin-bottom: 20px;
  font-size: 16px;
}

.hello-world-component .cta {
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  color: white;
  border-radius: 8px;
  background-color: #007bff;
  font-size: 16px;
}

.hello-world-component .cta:hover {
  background-color: #0056b3;
}
