@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #686de0, #30336b);
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 20px;
}

.container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
  text-align: center;
  max-width: 100%;
  width: 800px;
}

h3 {
  margin-top: 20px;
  font-size: 28px;
  color: #dfe6e9;
  font-weight: bold;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.8), rgba(56, 173, 169, 0.8));
  padding: 10px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.joke {
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 40px;
  margin: 50px auto;
  max-width: 600px;
  padding: 20px;
  background: rgba(108, 92, 231, 0.15); /* Light purple background */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4); /* Purple glow effect */
  color: #2d3436; /* Darker text color for better visibility */
  font-weight: bold;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
  }
  to {
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.8);
  }
}

.btn {
  background-color: #6c5ce7;
  color: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  padding: 14px 40px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #4834d4;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus {
  outline: 0;
}
