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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cinzel", serif;
  background-color: #3d5a48;
  color: #f1e6d8;
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
  margin: 0 20px;
  max-width: calc(100% - 40px);
}

#castSpellButton {
  /* https://copy-paste-css.com */
  display: inline-block;
  outline: 0;
  appearance: none;
  padding: 0px 12px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  background-color: rgb(249, 251, 250);
  border: 1px solid rgb(137, 151, 155);
  box-shadow: rgb(6 22 33 / 30%) 0px 1px 2px;
  color: #3d5a48;
  font-size: 14px;
  font-weight: 400;
  height: 36px;
}

h1 {
  font-size: 2rem;
  color: #f1e6d8;
  margin-bottom: 20px;
  text-align: center;
}

a {
  color: #f1e6d8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b37b4f;
}

#list {
  text-align: center;
  font-size: 25px;
}

#quests {
  display: inline-block;
  text-align: left;
}

.new-quest {
  font-weight: bold;
  color: #ff6600;
}

.features-list {
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 0.9em;
}

.feature-item {
  list-style-type: circle;
  margin: 3px 0;
}
