@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #b683c7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
body section {
  width: 450px;
  min-height: 220px;
  padding: 1rem 0;
  box-shadow: 0 0 5px rgba(2, 2, 2, 0.2784313725);
  background-color: #fff;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body section span {
  color: gray;
  font-size: 0.95rem;
  padding: 0.5rem;
  font-weight: 700;
}
body section .jokes {
  font-size: 1.5rem;
  padding: 2rem;
  font-weight: 700;
  width: 100%;
  word-wrap: break-word;
  text-align: center;
}
body section button {
  background-color: #aa61c3;
  border: none;
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
body section button:active {
  transform: scale(0.98);
}
body section button:hover {
  background-color: #ca73e7;
}/*# sourceMappingURL=jokes.css.map */