:root {
  --background-color: rgb(249, 233, 206)
}
body {
    background-color: var(--background-color);
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    }
  
  body a {
    text-decoration: none;
    font-style: italic; 
    color: slategray
  }

  body a :visited {
    color: lightgray;
  }
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 10px;
    margin-left: 5px;
  }
  
  .aphorism {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 50ch;
    font-family: 'Merriweather', serif;
  }
  
  .meta {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
    margin-bottom: 60px;
  }
  
  .number {
    font-weight: bold;
  }
  
  .work {
    font-style: italic;
  }
  
  .navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    background-color: var(--background-color);
  }
 
  .nav-link img {
    height: 30px;
    width: auto;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link img:hover {
    filter: grayscale(20)
  }