/* 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: #d4bdff;
  color: black;
  font-family: Verdana;
}

.one summary {
  background: #ffffff; 
  all: unset; 
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold; 
  /* border: 1px solid black;
   border-radius: 1px; */
}

 summary span {
  display: inline-block;
  max-width: 500px; 
}

details {
  background: #ffffff;
  width: 1000px;
  margin-bottom: 1rem; /* or whatever spacing you want */
}


details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
