body
{
    color: antiquewhite;
    background-color: rgb(62, 20, 6);
    font-family: Arial, Helvetica, sans-serif;
}

/* 
    Changing the colors of links so they are visible with the dark background: 
    https://www.w3schools.com/html/html_links_colors.asp 
*/

a:link {
    color: rgb(193, 255, 193);
    background-color: transparent;
    text-decoration: none;
  }
  
  a:visited {
    color: rgb(119, 237, 148);
    background-color: transparent;
    text-decoration: none;
  }

h1
{
    text-align: center;
    text-decoration: underline;
}

h2
{
    text-decoration: underline;
}