body {
  background-color: pink;
	height: 1500px;
}

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 */
}