body {
    text-align: center;
    background: rgb(16, 16, 16);
    color: #d9a066;
    font-family: "Courier New", Courier, monospace;
}

img {
    image-rendering: crisp-edges;
}

img[alt=vpicture] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}

img[alt=screenshot] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
}

.grid {
    display: grid;
    grid-template-columns: auto 800px auto;
    grid-template-rows: repeat(3, auto);
    grid-gap: 1em;
    grid-template-areas: "header header header"
                         "sidebar-1 article sidebar-2"
                         "footer footer footer";
}

details {
  cursor: pointer,
}

h1 {
	font-size: 28px;
    font-weight: bold;
	color: #4b692f;
}

h2 {
	font-size: 20px;
  font-weight: bold;
	color: #4b692f;
}

h3 {
    font-size: 16px;
    font-weight: bold;
	color: #4b692f;
}

a {
	color: #4b692f;
}

p {
    color: #d9a066;
}

table { border-collapse: collapse; }
tr {border: none; }
td {text-align: center; }
.fancytd {
	text-align: center;
	width: 25%;
	border-right: solid 1px #4b692f;
	border-left: solid 1px #4b692f;
}

.date {
    font-size: 14px;
    font-weight: normal;
    color: #f0f0f0;
}

.titleTable
{
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    font-weight: bold;
}

.titleTable a
{
    color: #f0f0f0;
    text-decoration: none;
}

.footerTable
{
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

.footerTable a {
    color: #FFFFFF;
}

header,
aside,
article,
footer {
    padding: 0.5em;
    font-size: 12px;
}

header {
    grid-area: header;
    background: #101010;
}

.sidebar-left {
    grid-area: sidebar-1;
}

article {
    text-align: justify;
    text-justify: inter-word;
    grid-area: article;
    padding: 30px;
    font-size: 20px;
}

.sidebar-right {
    grid-area: sidebar-2;
}

footer {
    grid-area: footer;
    background: #101010;
    font-size: 20px;
}

* {
	 box-sizing: border-box;
}

.container {
	position: relative;
    display: grid;
    grid-gap: 0.2rem;
}

.mainPic {
}

.mySlides {
	display: none;
}

.cursor {
	cursor: pointer;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 40%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: #4b692f;
	font-weight: bold;
	font-size: 20px;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: #4b692f;
	color: white;
}

.row:after {
	content: "";
}

.column {
}

.demo {
	opacity: 0.6;
}

.active {
	opacity: 0.8;
}
.demo:hover {
	opacity: 0.8;
}
