html, body {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
  }
  canvas {
    display: block;
  }
  
  h1 {
    color: #333;
    margin: 20px;
  }

  ul {
    list-style: none;

  }
  li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f955;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    font-size: larger;

  }
  li:hover {
    background-color: #e0e0e0;
    text-shadow: #333;
    transition: background-color 0.35s ease-in-out;
  }

  a {
    text-decoration: none;
    color: #333;
  }

  .description {
    color: #666;
    margin: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
  }

  