<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Web Page</title>
    <style>
        /* unvisited link */
        a:link {
            color: blue; 
        }

        /* visited link */
        a:visited {
            color: purple; 
        }

        /* hovered link */
        a:hover {
            color: red; 
        }

        /* active link */
        a:active {
            color: green; 
        }

        /* focused link */
        a:focus {
            outline: none;
            color: orange; 
        }

        body {
            background-color: #D3A4FF; 
            color: green; 
            font-family: Arial, sans-serif;
        }

        h1 {
            color: red; 
            text-decoration: overline;
        }

        div {
            background-color: #F0F0F0; 
            color: white;
            padding: 20px; 
        }
         li {
            color: black; 
        }
        .story-text {
            color: black; 
        }

    </style>
</head>
</html>