/* No, we don't specialize in Web Design, but thank you for asking. */
* {
    background-color : #222222;
    font-family : Courier;
    color : #00CC44;
    /*border  : 1px solid black;*/
    text-shadow : 3px 3px 5px black; /* black shadow 3px right+down */
}
h1,h2,h3 {
    padding  : 20px 0px 0px 0px; /* top, right, bottom, left */
    text-align: center;
}
.head {
    padding  : 20px 0px 7px 0px;
    font-size : 250%;
    font-weight: bold;
    text-align: center;
}
.subhead {
    font-size : 110%;
    font-weight: bold;
    text-align: center;
}
.footer {
    padding : 2.5em 0px 0px 0px;
    font-size : small;
    text-align: center;
}
.note {
    padding : 10em 0px 0px 0px;
    font-size : small;
}
body {
    padding : 5px;
    width : 50%;
    margin  : 1px auto; /* 1pixel at top+bottom, auto left+right */
}
p { }
a {
    text-decoration: none;
    color : #66FF66;
}
a:hover {
    text-decoration: underline;
    color : #CCFF11; /* changes color when hovering an anchor */
}

/* Responsive layout - makes the body wider on a slim screen */
@media screen and (max-width:600px) {
  body {
    width: 80%;
  }
}
