/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Consolas", "Courier New", monospace;
  display: grid;
  place-items: center;
}

    #headertitle {
        background-color: lightblue;
        border: 1px solid blue;
        padding: 15px;
        margin-bottom: 10px;
        text-align:center;
    }

    #another-styled-box {
        background-color: lightgreen;
        border: 1px solid green;
        padding: 20px;
    }

#navbar {
display: inline;
    list-style-type: none;
display: block;
  padding: 24px;
  background-color: #dddddd;
}