body { 
   background-color: rgb(204, 102, 51);
   alink="#000099"; 
   link="#000099"; 
   vlink="#990099";
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 285px;"
}

p {
    font-size:20px;
    font-weight: bold;
    text-align: center;
}



h1 {
    color: black;
    font-size: 48px;
    text-align: center;
}


.button {
    background-color: rgb(204, 102, 51);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

a.button {
   border: solid 1px #000;
  
}

/* unvisited link */
a.button:link {
    color: black;
}

/* visited link */
a.button:visited {
    color: red;
}

/* mouse over link */
a.button:hover {
    color: hotpink;
}

/* selected link */
a.button:active {
    color: blue;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
}

li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

/* Change the link color on hover */
li a:hover {
    background-color: #555;
    color: white;
}