@import url('https://fonts.googleapis.com/css2?family=Forum&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

body {
	font-family: "Lora", serif;
	line-height: 1.6;
	background: hsl(220, 100%, 40%, 0.85);
	margin: 0;
}

h1, h2, h3 { font-family: "Forum"; }

main {
	max-width: 1280px;
	padding: 1rem;
	margin: 1rem auto;
	color: rgba(0,0,0,0.85);
	background: rgba(255,255,255,0.95);
	border-radius: .5rem;
}

footer {
	background: rgba(255,255,255,0.85);
	padding: 1rem;
	margin-top: 8rem;
	text-align: center;
}


img {
	max-width: 100%;
	border-radius: .5rem;
	border: 1px solid rgba(0,0,0,0.25);

}

a.button {
	display: inline-block;
	border: 1px solid #005bb5;
	color: hsl(220, 100%, 40%);
	padding: .75rem;
	text-decoration: none;
}

a.button-primary {
	background: #005bb5;
	color: rgba(255,255,255,0.95);
}

section {
	display: grid;
	grid-template-columns: 1fr;
	
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	html { font-size: 16pt; }
	main { padding: 2rem; }
	section { grid-template-columns: repeat(2, 1fr); }
	section.twothirds {
		grid-template-columns: 4fr 6fr;
	}
	section.thirds {
		grid-template-columns: repeat(3, 1fr);
	}
}

h1 {
	font-weight: normal;
	color: hsl(220, 100%, 40%);
	font-size: 3rem;
	margin: 0;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	margin-top: 4rem;
	margin-bottom: 1rem;
	font-weight: normal;
	color: hsl(220, 100%, 40%);
}


section article {
	background: rgba(0,0,0, 0.01);
	border-left: 1px solid #005bb5;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

article h3 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: .5rem;
}

article p {
	margin: .5rem 0;
}

img {
	display: block;
	max-width: 100%;
}

img#logo {
	max-width: 85%;
	margin: 0 auto;
}