:root {
    --green: #9bb07f;
    --white: #f1f5ec;
    --brown: #6b4228;
    --shadow: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.5));
    --shadow2: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.2));
}

/* FONTS */

@font-face {
    font-family: 'Rounds';
    src: url(/fonts/TT\ Rounds\ Neue.ttf);
}

@font-face {
    font-family: 'Empathy';
    src: url(/fonts/High\ Empathy.ttf);
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
    height: auto;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--brown);
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

* {
    box-sizing: border-box;
}

html {
    margin: 10px;
    height: 100%;
    background-color: transparent;
    overflow: hidden;
    font-family: 'Rounds';
}

::selection {
    background: var(--white);
    color: #9aad82;
}

img::selection {
    background: none;
    color: transparent;
}

p,
a,
span,
li {
    font-size: 15px;
}

.scrollable {
    overflow-x: hidden;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover,
a:active {
    color: var(--green);
}

h1 {
    font-size: 28px;
    margin-bottom: 0;
}

table {
    font-size: 18px;
    font-style: italic;
    width: 455px;
}

#date {
    text-align: left;
}

#author {
    text-align: right;
}

.head {
    border-bottom: 2px dashed black;
    width: 470px;
    margin-top: -20px;
    margin-left: -10px;
    margin-bottom: 5px;
}

.body {
    height: 650px;
    width: 450px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0;
}

img {
    width: 200px;
    margin: 5px;
}

.right {
    float: right;
}

.left {
    float: left;
}

.full {
    margin-top: -5px;
    margin-bottom: -5px;
    width: 430px;
}