html
{
	background-color: white;
}

body
{
	color: black;
	font-family: Verdana;
	margin: 0;
}

h1, h2, p, img, ul, iframe, form
{
	padding: 0;
	border: none;
	margin: 0;
}

button
{
	padding: 0;
	border: none;
	margin: 0;
	outline: none;
	background-color: unset;
	color: white;
	font-family: Verdana;
}

button:hover, button:focus
{
	color: black;
	outline: none;
	cursor: pointer;
}

a:link, a:visited
{
	color: black;
	text-decoration: none;
	font-style: normal;
}

a:hover, a:focus
{
	color: black;
	text-decoration: none;
	font-style: normal;
	outline: none;
}

a:link.current, a:visited.current
{
	color: black;
	text-decoration: none;
	font-style: normal;
}


/* Scrollbar Settings */

/* width */
::-webkit-scrollbar
{
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track
{
	background: #818181;
}

/* Handle */
::-webkit-scrollbar-thumb
{
	background: #f1f1f1;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
	background: #f1f1f1;
}