@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/*body{
  background-color: #000;
  font-family: 'Open Sans', sans-serif;
}*/

.questions h1{
  color: #fff;
  text-align: left;
}

details{
  background-color: rgba(229,219,189,0.35);
  color: #000;
  font-size: 16px;
  text-align: left;
  margin: 0 10% 0 10%;
}

summary {
  padding: .5em 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;  
  transition: height 1s ease;
	font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after{
  content: "\002B";
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

details[open] summary:after{
  content: "\00D7";
}

details[open] div{
  padding: .5em 1em;
}