/* General CSS */
body {
	background-size: cover;
	box-sizing: border-box;
	color: var(--text);
	font-family: Arial, sans-serif;
	margin: 0;
}

h1 {
	color: var(--theme);
	font-family: "Title";
	font-size: 6vw;
	font-style: italic;
	font-weight: normal;
	text-align: center;
	text-shadow: var(--theme) 3px 0 10px;
	margin: 1vh 0;
}

h2 {
	font-size: 2vw;
}

.error a {
	color: var(--text-secondary);
	font-size: 1.5vw;
	margin-bottom: 0.5vw;
	font-style: italic;
	font-size: 1.5vw;
}

/* Main CSS */

.hero {
	display: contents;
	position: relative;
	text-align: center;
}

.hero-wrapper {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	overflow-x: hidden;
	width: 100%;
}

.info {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
}

.error img {
	height: fit-content;
	margin-right: 1vw;
	width: 8vw;
}

.vignette	{
	background: url(/assets/images/vignette.png) no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

/* Directory CSS */

::-webkit-scrollbar {
    width: 0.5vw;
  }

  ::-webkit-scrollbar-corner {
    background: var(--background-secondary);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--text);
    -webkit-border-radius: 1ex;
  }

  ::-webkit-scrollbar-thumb:hover {
    cursor: grab;
  }

  ::-webkit-scrollbar-thumb:active {
    cursor: grabbing;
  }

  .blur	{
	background: url(/assets/images/blur.png) no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

.exit {
	position: absolute;
	margin: 0.25vw;
	font-size: 1.5vw;
	z-index: 3;
}

.exit a {
	color: var(--text);
	text-decoration: none;
}

.exit:hover {
	font-style: italic;
	cursor: pointer;
}

.navbar {
	color: var(--text);
	text-shadow: var(--text) 0px 0px 10px;
	font-size: 2vw;
}

.navbar td:hover {
	text-decoration: underline;
	cursor: pointer;
}

.dtitle {
	color: red;
	text-shadow: red 0px 0px 10px;
	font-style: italic;
}

#mySearch {
	text-align: center;
	background: none;
	border: var(--text) solid 0.15vw;
	box-shadow: var(--text) 0px 0px 5px;
	border-radius: 1vw;
	font-size: 1.5vw;
	color: var(--text);
}

#mySearch:focus {
	border: var(--text) solid 0.2vw;
	box-shadow: var(--text) 0px 0px 7.5px;
}

.command {
	height: 100vh;
	display: flex;
    align-items: center;
}

#prompt {
	font-size: 6vw;
	font-style: italic;
	cursor: pointer;
	text-shadow: var(--theme) 0px 0px 15px;
	color: var(--theme);
	font-family: "Title";
	font-weight: normal;
}

#prompt:before {
	content: "KPD>_";
    animation: prompt infinite 2.5s;
}

@keyframes prompt {
	0% {content: "KPD>_";}
	50% {content: "KPD>";}
}

.category-title {
	text-align: center;
	font-size: 3vw;
	text-shadow: var(--text) 0px 0px 10px;
}

table {
	font-size: 2vw;
	font-weight: bold;
	text-align: right;
	color: var(--text-secondary);
	text-shadow: var(--text-secondary) 0px 0px 10px;
}

td {
	padding: 0.5vw 2vw;
}

.gtitle {
	text-align: left;
}

tr a {
	text-shadow: blue 0px 0px 10px;
}

tr a:visited {
	text-shadow: purple 0px 0px 10px;
}

tr a:hover {
	color: red;
	text-shadow: red 0px 0px 10px;
	font-style: italic;
}

#search {
	margin-bottom: 2.5vw;
	display: flex;
    flex-direction: column;
    align-items: center;
}

#search table {
	max-width: 95vw;
}

.changelog td {
	max-width: 55vw;
}

.changelog .gtitle {
	text-align: right;
}

thead {
	font-size: 1vw;
}

tfoot {
	margin-bottom: 0.5vw;
	font-size: 0.8vw;
}