* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	text-rendering: optimizeLegibility;
	margin: 0;
	padding: 0 0 5vh;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}

.type-image {
	padding: 0;
	display: block;
	width: auto;
	height: auto;
}

.type-image img {
	-webkit-user-select: none;
	display: block;
	margin: auto;
	max-width: 100vw;
	max-height: 100vh;
}

.type-audio,
.type-video {
	padding: 0;
	background-color: rgb(38, 38, 38);
}

.type-video video {
	max-width: 100% !important;
	max-height: 100% !important;
	min-height: 50px !important;
}

.type-archive,
.type-unknown {
	padding: 0 0 5vh;
}

.type-archive a,
.type-unknown a {
	text-decoration: none;
	background: linear-gradient(#0088d7, #006faf);
	color: #fff;
	padding: 0.75em 1em;
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: all 100ms ease;
}

.type-archive a:active,
.type-unknown a:active {
	background: linear-gradient(#006faf, #0088d7);
	box-shadow: none;
}
