* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  padding: 3rem;
  border: 2px dashed #333;
  border-radius: 1rem;
  background-color: #fff;
  width: 600px;
}

#btn {
  width: 220px;
  height: 60px;
  border: none;
  border-radius: 2rem;
  background-color: yellow;
  color: red;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

#btn:hover {
  background-color: gold;
  transform: scale(1.05);
}

#jokes {
  font-size: 20px;
  font-style: italic;
  color: brown;
  margin-top: 1rem;
}
