
/* CSS Document */
            body { 
				margin: 1em auto;
				max-width: 60em;
				font-family: sans-serif;
				color: #333333;
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				background: #6A5ACD; 
				}
            h1, h2, p { text-align: center; font-family: Verdana, Arial, Helvetica, sans-serif; }
            h1, h2, a { color: #ffffff; text-decoration: none; }
            h1 a, h2 a { color: red; }
			article {
				background: #ffede0;
				border-color: #df6c20;
				grid-column: 2 / 4;
				grid-row: 2 / 4;
                line-height: 200%;
			}
