This forum is quiet.

I have the following:

Code:
<html>
  <head>
    <style type="text/css">
      body {
        text-align: center;
      }
      #myText {
        color: #00c000;
        background-color: transparent;
      }
    </style>
  </head>
  <body>
    <p id="myText">Kangaroo</p>
  </body>
</html>
I have the text aligned horizontally, but I can't figure out how to align it vertically. I have tried the vertical-align property on both the body and myText, but neither work.

What am I doing wrong?