body {
    font-family: sans-serif;
    color: #7c552d;
    background-color: #faf2e4; /* Base color */
  }
  
  /* style links  */
  a {
    color: #7c552d;
  }

  /* Make content area fill the entire browser window */
  html,
  .fullscreen {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  /* Center the content in the browser window */
  .container {
    margin: auto;
    text-align: center;
  }
  
  .title {
    font-size: 3rem;
  }

  header {
    position: absolute;
    margin: auto;
    text-align: center;
    top: 0;
    width: 100%;
  }

  /* style the footer to be across the bottom of the page */
  footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #7c552d;
    color: #faf2e4;
  }