/* -----------------------------------
Things that are differen here compared to style.css:
body -> background-colour:

article -> 
article {
	font-size: 16px;
	grid-area: ct;
	background: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

RATHER THAN what exists in style.css:
article {
	font-size: 16px;
	grid-area: ct;
	border-top: 2px solid #e7e7e7;

header -> added color: #fff; to make text WHITE

nav a -> color: #9595c7
nav -> font-size:
h1 -> color: 
h2, strong -> color:
a -> color:
------------------------------------ */
body {
	/*display: flex;
    flex-direction: column;
    min-height: 100vh;*/
	
	margin: 0 auto; 
	max-width: 700px;
	min-width: 0;
	padding: 0 10px 25px;
	font-family: "Arial", "Helvetica", sans-serif;
	color: #444;
	line-height: 1.25;

	display: grid;
	row-gap: 5px;
	grid-template-columns: 1fr auto;
	grid-template-rows: 60px auto;
	grid-template-areas:
		"header nav"
		"ct ct";
	background-color: #1c1c84;
}
header {
	margin: 0px;
	font-size: 23px;
	font-weight: bold;
	color: #fff;
	grid-area: header;
	justify-self: left;
	align-self: end;
}
nav {
	font-size: 8px;
	letter-spacing: 1px;
	
	grid-area: nav;
	justify-self: right;
	align-self: end;
}
nav a {
	margin-left: 20px;
	text-align: right;
	color: #9595c7;
}
article {
	font-size: 16px;
	
	grid-area: ct;
	/*border-top: 2px solid #e7e7e7;
	background-color: #fff;*/
	background: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
h2 {
	margin-top: 1em;
	padding-top: 1m;
}
h2, strong {
	color: #49a3ad;
}
b {
	color: #222;
}
h3 {
	color: #d92bb6; /*magenta-ish*/
}
h1 {
	color: #65629c;
	font-size: 26px;
}
h2 {
	font-size: 23px;
}
a {
	color: #43c7de; 
}
hr {
    border:0;
    margin:0;
    width:100%;
    height:2px;
    background:#e7e7e7;
}
@media screen and (max-width: 430px) {
	body {
		grid-template-columns: auto;
		grid-template-rows: minmax(40px, auto) minmax(30px, auto) auto auto;
		grid-template-areas:
			"header"
			"nav"
			"ct"
	}
	header, nav{
		text-align: center;
		justify-self: center;
	}
	nav a{
		margin: 0 10px;
	}
}
