body {
    background-color:#6b705a;
    background-image: url(backgroundtop.png);
    background-repeat: no-repeat;
    background-size: 100% 16.4rem;
    margin: auto;
    background: linear-gradient(180deg, #434639, #434639 14.6rem, #25261f 0, #25261f 16.6rem, #6b705a 0);
}

#container {

    margin: auto;
    margin-top: 2rem;
    width: 60rem;
    background-color: #4b5b8a;

    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1.2rem;

    border-radius: 1rem;
    border: 0.6rem solid #2e3a57;
}

#header {
    position: relative;
    margin: auto;
    height: 10em;
    background-image: url(headerbk.png);
    background-position: right 0 bottom -1.1rem;
    background-size: 60rem;
    border-radius: 0.8em 0.8rem 0 0;
}

#kid {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 18rem;
    filter: drop-shadow(0 0 0.75rem black);
}

#title {
    position: absolute;
    bottom: 1.8rem;
    right: 1rem;
    width: 40rem;
    filter: drop-shadow(0.2rem 0.5rem 0.25rem black);
    font-size: 10px;
}


#nav {
    margin: -1px;
    font-weight: bold;
    text-align:center;
    background-color: rgb(0, 0, 0);
    width: 100%;
    padding: 1px;
    text-align:right;
}

.navtext {
    padding-right: 3rem;
    word-spacing: 0.8rem; 
}

.fullbar {
    background-color: rgba(0, 0, 0, 0.452);
    
    margin: 0 -0.6rem;
    /* add back negative margin value */
    padding: 0.25rem 0.6rem;
}

#main {
    margin: 1rem;
}

.margined {
    margin: 1rem;
}

.textright {
    width: 100%;
    text-align: right;
}

a {
    color:white;
    text-decoration: none;
}

a:hover {
    color:grey;
}

.center {
    width: 100%;
    margin: auto; 
    text-align: center;   
}

.double {
    display: flex;
}

.dbig {
    flex: 1;
    margin-right: 2rem;
}

.dsmall {
    width:16rem;
    text-align: center;
    margin: auto;
}

.thumb {
    width: 15rem;
}

h2 {
    margin-bottom:0;
}

.download {
    margin: auto;
    padding-top:0.5rem;
    width: 40rem;
    background-color: #4a4a7a;
    border-radius: 0.5rem;
    border: 0.2rem solid #ffffff;
}

.dlink {
    justify-content: center;
    margin: auto;
    width: 10rem;
    height: 2.4rem;
    font-size: 1rem;
    background-color: #910d1a;
    border-radius: 0.5rem;
    line-height: 2.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.qa {
    border-radius: 0.5rem;
    background-color: #2e3a57;
    margin-bottom: 1.5rem;
}

.question {
    border-radius: 0.5rem 0.5rem 0 0;
    padding:0.5rem;
    background-color: #910d1a;
    font-weight:bold;
}

.answer {
    padding:0.5rem;
    font-style:italic;
}


.accordion {
    background: rgb(46,58,87);
    background: linear-gradient(180deg, rgba(46,58,87,1) 35%, rgba(37,47,70,1) 100%);
    color: #FFF;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 0.5rem;
  }
  
  .active, .accordion:hover {
    background: rgb(46,58,87);
    background: linear-gradient(180deg, rgba(46,58,87,1) 35%, rgba(54,70,109,1) 100%);

  }

  .active {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: #36466d; 
    overflow: hidden;
    border-radius: 0 0 0.5rem 0.5rem;
  }