/* link style */
a:link 
{
	color: yellow;
	text-decoration: none;
}

a:hover
{
	color: lightyellow;
}

/* header style */
h1, h2, h3, h4, h5, h6
{
	color: #ffffff;
	user-select: none;
	font-family: impact;
	font-weight: normal;
}

:where(h1, h2, h3, h4, h5, h6) /* fallback */
{
	color: #ffffff;
	user-select: none;
	font-family: impact;
	font-weight: normal;
}

/* content style */
#content
{
	padding: 0% 10%;

	@media (max-width: 639px)
	{
		padding: 0% 5%;
	}
}

#content img
{
	max-width: 45%;
	margin: 1%;
}

p a:visited
{
	color: cyan;
	text-decoration: none;
}

p, ul, ol
{
	color: white;
	font-family: sans-serif;
}

ul, ol
{
	font-size: 10pt;
	font-style: oblique;
	list-style-position: inside;
}

pre, code
{
	color: #c0f0ff;
}