

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	margin: 0;
	font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.5s;
}

.container {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(76, 81, 191, 0.10);
	padding: 44px 32px;
	text-align: center;
	max-width: 370px;
	backdrop-filter: blur(4px);
}

h1 {
	color: #4f5bd5;
	margin-bottom: 24px;
	font-size: 2rem;
	letter-spacing: 1.2px;
	font-weight: 800;
	text-shadow: none;
}

.joke-box {
	background: #f4f7fa;
	color: #222;
	border-radius: 16px;
	padding: 24px 16px;
	margin-bottom: 24px;
	min-height: 60px;
	font-size: 1.1rem;
	font-weight: 500;
	transition: background 0.3s, color 0.3s;
	box-shadow: 0 2px 8px #667eea11;
	word-break: break-word;
}

#jokeBtn {
	background: #4f5bd5;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 12px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 2px 8px #4f5bd522;
	transition: background 0.2s, transform 0.2s, color 0.2s;
	outline: none;
}
#jokeBtn:hover {
	background: #667eea;
	color: #fff;
	transform: scale(1.05);
	letter-spacing: 0.5px;
}
