body {
    /* background */
    /*margin: 0px;*/
    background-image: url("images/bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    user-select: none;
}

h1,
h2,
p,
ul,
figcaption,
table,
caption {
    font-family: SF Pro Display, SF Pro Icons, Helvetica, sans-serif;
    color: #000000;
    padding: 2%;
    top: 1%;
    user-select: none;
    /*border-width: 5px;
    border-color: rgb(19, 11, 97);
    border-style: groove;*/
}

h1 {
    background: rgb(157, 167, 189);
    border-radius: 10px;
    text-align: center;
}

h2 {
    background: rgb(209, 226, 109);
    border-radius: 10px;
    text-decoration: underline;
}

p {
    font-size: 18px;
    line-height: 25px;
    /*box-shadow: 7px 7px 10px 5px lightgrey;*/
    background: rgba(200, 200, 200, 1);
    border-radius: 20px;
    text-indent: 10%;
}

figcaption {
    font-size: 22px;
    line-height: 34px;
    background: rgb(192, 170, 109);
    border-radius: 20px;
    text-align: center;
    flex-wrap: wrap;
}

caption {
    background: rgb(224, 218, 132);
    border-radius: 20px;
}

div:not(.content)>* {
    margin: 0px;
}

div:not(.content)>*+h2,
div:not(.content)>*+p,
div:not(.content)>*+ul,
:not(div.content)>*+figcaption {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

h1:not(:last-child),
h2:not(:last-child),
ul:not(:last-child),
p:not(:last-child),
figcaption:not(:last-child) {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

ul {
    background: rgba(200, 200, 200, 1);
    border-radius: 20px;
    font-size: 24px;
}

code {
    display: flex;
}

.sidebar {
    position: fixed;
    height: 100%;
    width: 10%;
    background: linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgba(42, 43, 102, 1) 100%);
    padding-top: 2%;
}

.sidebar>ul {
    background: transparent;
    padding: 0;
    padding-left: 5%;
    padding-right: 5%;
    border-radius: 0;
}

.sidebar>ul>li {
    width: 90%;
}

.content {
    width: 80%;
    margin: auto;
    margin-left: 15%;
    overflow: auto;
}

body>div {
    padding-top: 2%;
    padding-bottom: 2%;
}

table {
    background: rgb(206, 202, 145);
    border-radius: 20px;
    /*text-align: center;*/
}

canvas {
    border: 1px solid black;
    background-color: white;
}

button {
    user-select: none;
    -moz-user-select: none;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
