header, footer {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 50px;
	font-size: calc(9px + 2.2vw);
}

body {
	height: 100%;
	width: 100%;
	background-image: linear-gradient(#FFC, #FFA);
	background-attachment: fixed;
	position: absolute;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.error {
	display: grid;
	grid-gap: 10px;
	grid-template-rows: auto;
	align-items: center;
	box-shadow: 6px 6px 6px black;
	background-color: #bcfb8e;
	font-size: calc(6px + 1.5vw);
}


.errorname {
	text-align: right;
	grid-column: 1;
	font-weight: bold;
	padding: 10px;
}

.stacktrace {
	text-align: center;
	grid-column-start: 1;
	grid-column-end: 3;
}

button {
	padding: 2vh;
	margin: 2vh;
	font-size: 3vh;
	background-color: lightblue;
	border-radius: 15px;
	box-shadow: 0 9px #999;
}

button:focus {
	border-style: solid;
	border-width: 2px;
	border-color: blue;
	outline: none;
}

.errorvalue {
	text-align: left;
	grid-column: 2;
	padding-left: 20px;
}