@import url("https://fonts.googleapis.com/css2?family=Mulish&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Mulish", sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, #fd297a, #9424f0);
  overflow: hidden;
  padding: 20px 100px;
}

.container {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

h3 {
  font-family: inherit;
  color: black;
  opacity: 0.7;
  margin: 0;
  padding: 20px;
}

.joke {
  margin: 10px 20px;
  max-width: 800px;
  font-size: 18px;
  font-family: inherit;
  font-weight: bold;
}

.btn {
  border: 0;
  background-color: #9424f0;
  font-size: 16px;
  color: #fff;
  padding: 15px 30px;
  margin: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.btn:focus {
  outline: 0;
}

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