@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root{
	--primary: rgb(96,192,255);
	--secondary: rgb(192,96,0);
	--lightgrey: rgb(230,235,240);
}
* {
	padding:0;
	margin:0;
}
html, body {
	height:200vh;
	font-family: 'Open Sans', sans-serif;
}
#header {
	width:100vw;
	height:50vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
#header > div {
	background-color:rgba(0,0,0,0.75);
	color:white;
	padding:1rem;
	border-radius: 1rem;
}
#content {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2rem 5rem;
}
#content .frame-layout-0 {
	flex: 1 1 33%;
    min-width: 30ch;
    max-width: 50ch;
}
h1 {
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 2rem;
}
h2 {
	font-size: 1.5rem;
	line-height: 2.5rem;
	margin-bottom: 1.5rem;
}
p {
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 1rem;
}
time {
	font-size: 0.75rem;
	line-height: 0.75rem;
	padding: 0.25rem 0.5rem;
	background-color:var(--lightgrey);
}
:focus {
	outline: 0;
}
:moz-focus-inner {
	border: 0;
}

a.button {
	--clr1: rgb(192,96,0);
	--clr2: rgb(0,96,192);
	color:white;
	text-decoration: none;
	padding:1rem;
	border-radius: 1rem;
	background-color: var(--clr1);
}
a.button:focus {
	box-shadow: 0 0 0 0.4rem white, 0 0 0 0.8rem var(--clr1);
}
a.button:hover {
	background-color: var(--clr2);
}
a.button:focus:hover {
	box-shadow: 0 0 0 0.4rem white, 0 0 0 0.8rem var(--clr2);
}