* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  height: 100vh;
  width: 100%;
  background: #518bdd;
  background: linear-gradient(
    74deg,
    rgba(81, 139, 221, 1) 0%,
    rgba(202, 129, 182, 1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  min-height: 20rem;
  max-height: max-content;
  border-radius: 10px;
  display: flex;
  justify-content:space-evenly;
  padding-bottom: 20px;
  width: 40rem;
  padding-top: 20px;
  gap: 20px;
  background-color: white;
  flex-direction: column;
  align-items: center;
}
.emoji {
  font-size: 3rem;
}

.joke {
  font-size: 20px;
  max-width: 90%;
}
.btns img {
  height: 1rem;
  margin-right: 10px;
}
.btns {
  display: flex;
  cursor: pointer;
  gap: 20px;
}
.btns button {
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  background-color: #ff5946;
  border: none;
  outline: none;
  font-weight: 500;
  color: white;
}
.copy {
  height: 2rem;
  width: 10rem;
  background-color: white;
  margin-left: 36%;
  text-align: center;
  padding-top: 5px;
  opacity: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  animation-duration: 2s;
  font-size: 18px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
