@charset "utf-8";
/* CSS Document */
body {
    background:lightBlue;
}
p{
  font-size:24px;
}
h1,h4 {
  color : black;
}
td {
    vertical-align: top;
}
 /* unvisited link */
a:link {
font-size: 24px;
  color: blue;
}

/* visited link */
a:visited {
font-size: 24px;
  color: green;
}

/* mouse over link */
a:hover {
font-size: 24px;
 color: hotpink;
}

/* selected link */
a:active {
font-size: 24px;
 color: blue;
} 

