body{
    /*hex is base16 red, then green, then blue */
    background-color: #112f4f;
}

li:hover{
   background-color:#309aab;
}

img{
    width:70%;
}
#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  /* Footer code obtained from https://www.freecodecamp.org/news/how-to-keep-your-footer-where-it-belongs-59c6aa05c59c */
}
input{
    width:20%;
}
table{
    border: 1px solid white;
    width:80%;
    margin:auto;
}
th:first-child{
    background-color: #061226;
    border: 1px solid white;
}
th:nth-child(2){
    background-color: #061226;
    border: 1px solid white;
}
td:first-child {  /* This is for the first column in the table */
    border: 1px solid white;
}
td:nth-child(2){
    border: 1px solid white;
}