/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Personal Webpage
   
   
   To help upkeep of website users can donate to support host

   
   Filename: layout_donate.css

*/


@charset "utf-8";

h1 {
	grid-area: h1;
	background: none;
	color: gold;
	font: Italic bold 4em/1em 'Courier New', Courier, monospace;
	text-decoration: underline;
	padding: 0px 30px 0px 100px;
	text-shadow: purple 10px 10px 10px;
}
	

ul {
	grid-area: button;
	background: white;
}
	
li {
	float: right;
}

li a {
	font-family: 'Courier New', Courier, monospace;
	color: black;
	background: gold;
	border-radius: 20px;
	display: block;
	padding: 12px;
	border: 1px solid #ddd;
}

li a:hover {
	background-color: #f1f1f1;
}

article {
	grid-area: text;
	background: black;
	border-radius: 20px;
	height: 135%;
	opacity: .9;
}
p:first-of-type {
	padding: 8.5%;
	font-weight: bold;
	font-size: 3em;
}

p:not(:first-of-type){
	text-align:justify;
	margin-left: 6em;
}

p {
	color: gold;
	text-align: center;
	padding: 1%;
	font: Italic 2em/1em 'Courier New', Courier, monospace;
	text-align: center;
}
	
body {
	display: grid;
	background: repeating-radial-gradient(circle 1px, purple 10%, violet 50%);
	grid-gap: 5px;
	grid-template-columns: 1fr 10fr ;
	grid-template-areas: "h1 h1 button "
						 "text text text";
						 
	margin: 50px;
	overflow: hidden;	
}


