@charset "utf-8";
/* this is a css document */

.bigBlue {
    font-size: 36px; 
    font-family: "Lucida Calligraphy", Arial, Serif;
    color: #e8cc3f; 
}
nav td {
    background-color: red;
    width: 100px;
    height: 40px;
    font-size: 24px;
    color: white;
    text-align: center;
    border: 1px solid black;
    border-radius: 15px;
}
nav tr {
    margin: 30px auto;
}
tr a {
    color: lightblue;
    text-decoration: none;
}
ul.nav1 {
    margin-left: 30px;
}
li.nav1 {
    width: 100px;
    height: 40px;
    background-color: yellow;
    list-style-type: none;
    font-size: 24px;
    color: white;
    text-align: center;
    border: 2px solid black;
    line-height: 40px;
}
li a {
    color: white;
    text-decoration: none;
}
li a: hover {
    color: blue;
}








