body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, #3558fa, #5a9fbe, #7ad494);
  height: 100vh;
  margin: 0;
  text-align: center;
}

p {
  color: white;
  font-size: 24px;
  max-width: 80%;
}

iframe {
  margin-top: 20px;
  border: none;
}

.button {
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}