:root {
    --charcoal: #282c34;
    --disabled-grey: #484c54;
    --dark-bg: #070a1b;
}

body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* background-image: url("/grad.png"); */
    /* background-size: 100% 100%; */
    background-color: var(--dark-bg);
}

a, p, li, h1, h2, h3, h4, h5, h6, th, td, blockquote, pre {
    font-family: Arial,Helvetica,sans-serif;
    color: white;
    margin: 5px;
}

blockquote {
    padding-left: 15px;
    border-left: 3px solid white;
}

p {
    font-size: 1.2em;
}

a {
    text-decoration: none;
    margin: 0px;
    font-weight: bolder;
}

a:hover, a:active {
    text-decoration: underline;
}

.like {
    margin-top: 1em;
}

.button {
    border-style: solid;
    border-radius: 25%;
    border-color: white;
    padding: 0.5em;
    margin: 1em;
}

.header {
    flex-basis: 1;
    padding-left: 10px;
    display:flex;
}

.main {
    flex-grow: 1;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    text-align: justify;
}

.sidebar {
    width: 20vw;
}

.postmain {
    height: fit-content;
}


ul {
    padding: 0px;
    margin: 0px;
}

ul li {
	margin: 0 0 0 0;
	padding: 2px 0 2px 20px;
	list-style: none;
	background-image: url("bullet.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    padding: 30px;
}

.post {
    flex-grow: 1;
    max-width: 70vw;
    border-radius: 10px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    margin: 10px;
    padding: 5px;
    padding-bottom: 2em;
}

.post-details {
    font-size: 0.8em;
}

table {
    width: 100%;
    table-layout: fixed;
}

table.dataframe {
    table-layout: auto;
}

table.dataframe thead th {
    text-align: left;
}

.footer {
    flex-basis: 1;
}

.headerlink{
    flex: auto;
    position: relative;
}

.headerlink a {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#headerhome {
    margin-right: 20px;
}

img, video {
    margin: 10px;
    width: 100%;
}

img.small, video.small {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}