nav {
    background-color: rgb(208, 167, 246);
    padding: 10px;
}

nav ul {
    list-style:square;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px; 
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color:rgb(163, 243, 243);
}

h1 {
    font-family:'Courier New', Courier, monospace;
    color:rgb(18, 18, 102); 
}

body {
    background-color:bisque;
    margin-left:auto;
    margin-right:auto;
}

h2 {
    color:rgb(140, 183, 221);
    font-family:'Courier New', Courier, monospace
}

p {
    font-family:'Courier New', Courier, monospace;
    color: black;
}

li {
    font-family:'Courier New', Courier, monospace;
    font-size: 18px;
}

img {
    width: 300px;
    height: auto;
}