body {
    margin: 0;
    background: #3B3B3B;
    color: #FFFBEF;
    padding: 0 15%;
    font-family: 'Montserrat', 'Chakra Petch' Arial, sans-serif;
    font-size: 18px;
}
li {
    list-style-type: none;
}
.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    top: 0;
    width: 100%;
}

.navcontent {
    float: right;
}

.navcontent-r {
    float: left;
}

    .navcontent a, .navcontent-r a {
        display: block;
        color: #9e9a8f;
        text-align: left;
        padding: 20px 20px;
        text-decoration: none;
        border-bottom: 0;
    }
a {
    text-decoration: none;
    border-bottom: 2px dotted;
    color: #9e9a8f;
}

a:hover {
    color: #f1ede1;
    text-decoration-line: none;
}


    
.license {
  text-align: center;
  padding: 16px 16px;
}
.acronym, .em, h1, h2, h4 {
    font-weight: 700;
}

button {
    border-color: #FFFBEF;
    background: none;
    color: #FFFBEF;
    padding: 20px;
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Chakra Petch', Arial, sans-serif;
}
.navbutton {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.backButton {
    align-self: flex-start;
}
button:hover {
    background: #534439;
}
.navbutton {
    border-bottom: none;
}
.lesson-body {
    text-align: left;
}
@media screen and (max-width:800px) {
    body {
        font-size: 14px;
        padding: 0 10% 0 10%;
    }
    button {
        padding: 15px;
    }
    .navcontent a, .navcontent-r a {
    padding: 30px 10px 30px 10px;
    }
    .navbutton {
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    padding: 4px;
    }
    .backButton {
        align-self: stretch;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}
.mobile {
    display: none;
}
.prompt-c {
    font-size: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3b3b3b;
    padding: 5px 15%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
}

.cookie-accept {
    font-family: 'Chakra Petch';
    background-color: #2f685e;
    color: #FFFBEF;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}