body {
	letter-spacing: 0.3ch;
}

:root {
	--fgc: white;
	--tc: #C0C0C0;
}

.con {
	text-align: center;
	width: 100ch;
	margin: 10vh auto 5ch auto;
	max-width: 95vw;
}

h1 {
	font-weight: normal;
	border-top: 2px solid var(--fgc);
	border-bottom: 2px solid var(--fgc);
	padding: 0.5ch;
	letter-spacing: 0.75ch;
}

h3 {
	font-weight: normal;
	margin-top: 1.5ch;
}

#vi {
	width: fit-content;
	width: 500px;
	max-width: 95vw;
	margin-bottom: 10ch;
	image-rendering: initial;
}

.flexy {
	display: flex;
	flex-direction:row;
	flex-wrap: wrap;
	width: 100ch;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 10ch;
}

.cell {
	border: solid 1px var(--fgc);
	padding: 1ch;
	font-size: 1.3rem;
	margin: 5px;
	text-decoration: none;
	position: relative;
	color: var(--tc);
	flex-grow: 1; 
	min-width: 25%;
}

.cell:hover::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0;
	left: 0;
	color: black;
	background: var(--fgc);
}

.sechead {
	width: 100%;
	border: solid 1px var(--fgc);
	padding: 1ch;
	font-size: 1.3rem;
	margin: 5px;
	margin-top: 3ch;
    background: url(../../assets/tile.png);
}

.sechead > b {
    background: black;
    padding: 1ch;
    color: var(--fgc);
    font-weight: 100;
    border-left: double var(--fgc);
    border-right: double var(--fgc);
}

.depri {
	--fgc: gray;
	--tc: darkgray;
	border: dashed 1px;
}

.depri:hover::after {
	top: -1px;
	height: 3px;
}

#SBL {
	background: black;
	color: red;
	margin: none;
	pointer-events: none;
	--fgc: red;
}

#SBL::after {
	content: none;
}

footer {
	color: gray;
	text-align: center;
	padding: 3ch;
}