|  | @@ -4,19 +4,20 @@
 | 
	
		
			
				|  |  |  <head>
 | 
	
		
			
				|  |  |      <meta charset="UTF-8">
 | 
	
		
			
				|  |  |      <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
	
		
			
				|  |  | +    <meta http-equiv="refresh" content="10">
 | 
	
		
			
				|  |  |      <title>Today's to-do List</title>
 | 
	
		
			
				|  |  |      <style>
 | 
	
		
			
				|  |  |          body {
 | 
	
		
			
				|  |  |              background-color: transparent;
 | 
	
		
			
				|  |  | -            color: black;
 | 
	
		
			
				|  |  | +            color: #CBD2D9;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |      </style>
 | 
	
		
			
				|  |  |  </head>
 | 
	
		
			
				|  |  |  <body>
 | 
	
		
			
				|  |  | -    <h1>Today's to-do List</h1>
 | 
	
		
			
				|  |  | +    <h2>Today's to-do List</h2>
 | 
	
		
			
				|  |  |      <ul>
 | 
	
		
			
				|  |  |          {% for item in items %}
 | 
	
		
			
				|  |  | -            <li style="text-decoration: {{ 'line-through' if item.checked else 'none' }};">
 | 
	
		
			
				|  |  | +            <li style="text-decoration: {{ 'line-through' if item.checked else 'none' }}; font-weight: bold; font-size: 18px;">
 | 
	
		
			
				|  |  |                  {{ item.name }}
 | 
	
		
			
				|  |  |              </li>
 | 
	
		
			
				|  |  |          {% endfor %}
 |