/* pink background because it is fun 
		also setting the height to be bigger than the screen so when we click the jump link the 
		page will actually move so we know it worked */
body {
  background-color: pink;
	height: 1500px;
}
/* styling the img so it is a normal, managable size */
img {
  max-width: 100%; /* image won't exceed the container's width */
  height: auto;    /* scales height to maintain aspect ratio */
}

/* Default link color */
a:link {
  color: red; /* Blue */
  text-decoration: none; /* Removes underline by default */
}

/* Visited link color */
a:visited {
  color: #800080; /* Purple (changes color after being visited) */
}

/* Mouse hover color */
a:hover {
  color: white; /* Red (changes color when mouse hovers) */
  text-decoration: underline; /* Adds underline on hover */
}

/* Active link color (during click) */
a:active {
  color: #FFA500; /* Orange */
}