/*
Joseph Neale
1-25-2026
Reference: W3Schools. (n.d.). https://www.w3schools.com/css/default.asp
*/

body {
    background-color: beige;
    text-align: center;
	color: black;
    font-family: "Arial", Helvetica, sans-serif;
    
}

h1 {
	font-family: "Arial", Helvetica, serif
	font-size: large;

div {
    background-color: grey;
}

/*Link colors */
a:link{
    color: black;
}

a:visited {
    color: blueviolet;
}

a:hover {
    color: blue;
}

a:active {
    color: darkred;
}
