/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

#training ul {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
  width:100%;
}

#training li {
    width:100%;
}

#training  .dropdown-content {
    padding:20px;
  border:1px solid black;
  /*display:none;*/
}

#training .show {
  display:block;
}

.hunting-check,  .herb-scavenging-check, .climbing-check, .swimming-check, .digging-check, .evasion-check, .damage-check, .environment-use-check, .eloquence-check, .problem-solving-check, .affinity-objects-check, .immersive-affinity-use-check {
  display:none;
}