body{
    font-family: Arial, Helvetica, sans-serif;
    color: #C9C1E6;
    background-color: #422C73;
    padding-bottom: 50px;
    padding-top: 25px;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header, .section{
    width: 90%;
}
@media(min-width: 800px){
    .header, .section{
        width: 70%;
    }
}

.header img{
    width: 30%;
    text-align: center;
    float: right;
}
.url{
    font-style: italic;
}
.verbohttp{
    color: yellow;
}
.tbl-body th{
    text-align: left;
}
.tbl-body{
    border-collapse: collapse;
}
.tbl-body th, .tbl-body td{
    padding: .5rem;
}

h1, h2, h3{
    color: #03A688;
}


/* COLLAPSE */
.collapsible {
  background-color: #2d1e53;
  color: #444;
  cursor: pointer;
  padding-left: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-top: 10px;
}

button.collapsible>h2::after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    margin-right: 10px;
}
button.collapsible.active>h2::after {
  content: "\2212";
}

.active, .collapsible:hover {
  background-color: #281359;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #483f88;
  padding-bottom: 20px;
}
