html{
	--text:rgb(0,0,100);
	--neutral:rgb(137,105,91);
	--white:rgb(253,237,211);
	color:var(--text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	box-sizing: border-box;
}

body {
	background-image: url("sunset.jpg");
	background-size: 100% 100%;
	min-height:100vh;
	padding:1em;
	margin: 0;
}
::selection{
	background:var(--text);
	color:var(--white)
}
nav {
	font-size:1em;
	display: flex;
	flex-direction: column;
}
a{
	font-weight: bold;
	color:var(--text);
}
a:visited{
	color:var(--text);
	text-decoration-color: var(--white);
}
a:hover,
a:focus{
	background-color: var(--white);
	outline:none 
}
copyright{
	color:var(--white);
	font-size:75%;
	position: fixed;
	bottom: 0;
	z-index: -1
}
