#wpwrap{
    background-color: rgb(255, 255, 255);
    
}

#wpbody{
    /* text-align: center; */
    width: 100%;
}

#wpbody-content {
    display: flex;
    min-height: 100vh;
    margin-left: -20px;
}

.wrap {
    font-family: Arial, sans-serif;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 50px;

}
.wrap h1 {
    color: #000000;
    font-size: 40px;
    font-weight: bold;
}
.wrap .eai-intro {
    color: #666;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 50px;
}
.wrap iframe {
    margin-bottom: 20px;
}
.wrap dl dt {
    font-weight: bold;
}
.wrap dl dd {
    margin-bottom: 10px;
}


#contact-me{
    margin-top: 50px;;
}

body{
  background-color: #000;
  font-family: Arial, sans-serif;
}

.faq-container h1{
  text-align: center;
  max-width: 100%;
  width: 100%;
}

.faq-container a{
  color: #fff;
  max-width: 50%;
}

details{
  display: block;
  background-color: #ececec;
  color: #000000;
  font-size: 1rem;
  max-width: 100%;
  width: 800px;
  box-sizing: border-box;
}

.details, .answer {
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

summary {
  padding: .5em 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;  
  transition: height 1s ease;
  font-weight: bold;
}

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]{
    width: 800px;
  }

details[open] div{
  padding: .5em 1em;
  overflow: hidden;
}

.answer{
  font-size: 1rem;
  font-style: italic;
  box-sizing: border-box;
}