@import url("https://fonts.googleapis.com/css2?family=Princess+Sofia&family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  font-family: "Shantell Sans", serif;
  margin: 20px;
}
.level-container {
  margin-bottom: 15px;
}
.level-container span {
  font-weight: bold;
  margin-right: 10px;
}
.copy-button {
  padding: 5px 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.copy-button:hover {
  background-color: #45a049;
}
.copy-button.copied {
  background-color: gray;
  color: #ddd;
  cursor: not-allowed;
}
.lvl_1 {
  color: rebeccapurple;
}
.lvl_2 {
  color: blue;
}
.lvl_3 {
  color: green;
}
.lvl_4 {
  color: pink;
}
.lvl_5 {
  color: red;
}
