@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #100d38;
  color: white;
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 30px;
  margin-bottom: 80px;
  font-weight: 900;
}

.joke {
  background-color: rgb(58, 30, 86);
  font-size: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 500px;
}

button {
  margin: 30px;
  border: none;
  border-radius: 10px;
  color: white;
  padding: 15px;
  font-size: 20px;
  background-color: rgb(114, 20, 196);
  cursor: pointer;
}

button:active {
  background-color: green;
}
