/* Custom Styling */

/*
* {
	border: thin solid pink;
}
*/

:root{
	--back: FloralWhite;
	--text: #352D66;
	--link: SlateBlue;
	--code: ForestGreen;
	--edge: #e5e1d8;
}

:root {
	--siderbar-width: 250px;
}


body {
	margin: 0 1rem;
}

header {
	/*margin-top: 20px;*/
}

header .description {
	font-size: small;
}

header a,
header a:visited {
	color: var(--text);
	/*font-weight: bold;*/
}

header a:hover {
	text-decoration: none;
	color: var(--link);
}

header nav ul li {
	margin: 0.5rem 0;
}

nav li a,
nav li a:visited {
	/*padding: 0.2rem;*/
	/*font-size: small;*/
}

/*
nav ul.projects {
	margin-bottom: 0;
}
*/

main {
	max-width: 700px;
	margin-left: 270px;
}

main a,
main a:visited {
	text-decoration: underline;
}

main a:hover {
	text-decoration: none;
}


code,
pre.code {
	/*font-weight: bold;*/
	/*color: var(--text);*/
}

/* Reset gallery to NOT a grid */


.gallery {
	/*display: initial;*/
	grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}

.gallery a {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.gallery a img {
	/*width: 90%;*/
	aspect-ratio: initial;
	object-fit: contain;
}

