/* Ryan Rowe https://elizabeth99.neocities.org/Lab%205/Lab5.html*/

body {
    margin-top: 50px;
    text-align:center; 
    background-color: azure; 
}
h3 {
    text-align: center;
}

.linkbox {
       background-color: #65a9d7;
       color: white;
       padding: 10px;
       box-shadow: 10px 10px 8px silver;
       text-shadow: 2px 2px silver;
       border-radius: 10px;
       text-decoration: none;
       font-size: 14px;
       font-family: Georgia, serif;
    }
    .linkbox:hover {
       background-color: lightblue;
       color: mintcream;
    }

table {
    margin-left: auto;
    margin-right: auto;
}

#info td, #data th {
    border: 1px solid #d0d0d0;
    padding: 8px;
} 

#info tr:nth-child(odd) {
    background-color: darkseagreen;
}

#info tr:hover {
    background-color: burlywood;
}

#info th {
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: left;
    background-color: #33cccc;
    color: white;
}
