body,
button {
	font-family: sans-serif;
	text-align: center;
	color: white;
	background-color: #222;
	transform: translate3d(0, 0, 0);
}

#log-box {
	position: relative;
	left: 0;
	right: 0;
	width: 6rem;
	padding-left: calc(100vw - 100%);
	margin: 0.5rem auto 1rem auto;
	height: calc(100vh - 12rem);
}

#log {
	position: absolute;
	bottom: 0;
	max-height: 100%;
	padding: 0 1rem;
	overflow-y: auto;
	font-family: monospace, 'Lucida Console';
	text-align: right;
}

h1 {
	margin-bottom:  0px;
}

p {
	margin: 0;
}

button {
	position: relative;
	height: 4rem;
	width: 7rem;
	padding: 0;
	margin: 0;
	font-size: 150%;
	font-weight: bold;
	background-color: #080;
	border: none;
	border-radius: 0.5rem;
	box-shadow: 0 0.1rem 1rem black;
	outline: none;
	cursor: pointer;
}

button:hover {
	background-color: #0A0;
}

button:active {
	top: 0.1rem;
	background-color: #090;
	box-shadow: 0 0.1rem 0.5rem black;
}

::-webkit-scrollbar {
	width: 0.8rem;
	background-color: #333;
}

::-webkit-scrollbar-thumb {
	background-color: #777;
}


#article {
	text-align: left;
	padding: 10% 10% 1%;
}

a {
	color:yellow;
}