title {
  font-style: normal;
}
h1.one {
  color: blue;
  font-style: normal;
  font-size: 40px;
  display: inline;
}
#canvas{
  border: 1px solid black;
  background-color: white;
  width: 100%;
  height: 100%;
}
h1.one:hover{
  color:magenta;
}

h1.two {
  color: red;
  font-style: normal;
  font-size: 40px;
  display: inline;
}

h1.two:hover{
  color:lime;
}
h1.three {
  color: orange;
  font-style: normal;
  font-size: 40px;
  display: inline;
}

h1.three:hover{
  color:indigo;
}

a:link{
  text-decoration: none;
  color:blue;
}
a:visited{
  text-decoration: none;
  color:blue;
}
a:hover{
  text-decoration: none;
  color:orange;
}

hr {
  width: 65%;
  margin: 0;
  border-top: 1px solid black;
}



ul {
  color: black;
  font-style: normal;
  font-size: 25px;
  font-weight: normal;
}

li {
  color:black;
  font-style: normal;
  font-size: 20px;
}