html {
	font-size: 24px;
}
body {
	font-family: 'aaarghnormal';
	background: lightyellow;
	padding-bottom: 5rem;
}
a {
	color: hsl(0, 64.9%, 43.1%);
}
h2,h3,h4,h5,h6 {
    font-family: 'goudy_bookletter_1911regular';
	word-break: break-all;
}
header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	background: #c6e6fc;
}
header h1 {
	margin-top: 0;
    font-family: 'goudy_bookletter_1911regular';
	font-size: 7.5rem;
	font-weight: normal;
}
header p {
    font-family: 'goudy_bookletter_1911regular';
	font-size: 2.25rem;
}
.row {
	max-width: 40rem;
    display: grid;
    grid-auto-flow: dense;
    grid-gap: 1rem;
	margin: 0 auto;
}
.row:nth-child(odd) {
    grid-template-columns: [logo-start] 20vw [logo-end] 1fr;
}
.row:nth-child(even) {
    grid-template-columns: 1fr [logo-start] 20vw [logo-end];
}
.row.full {
    grid-template-columns: 1fr;
}
section {
	margin-bottom: 2rem;
}
section h2 {
	margin: 1rem 0;
}
section .row:not(:last-child) {
	margin-bottom: 2rem;
}
.text {
	background: #c6e6fc;
    padding: 1em;
}
.text p:first-child {
	margin-top: 1rem;
}
.logo {
    grid-column: logo;
    align-self: center;
    justify-self: center;
}
.logo img {
	max-width: 100%;
    max-height: 20vh;
}
h3 a {
	color: black;
	text-decoration: underline;
}
ul {
	margin: 0;
	list-style: none;
}
li ~ li {
	margin-top: 0.5em;
}
#accounts ul {
	padding: 0;
}

@media only screen and (max-width: 60em) {
	html {
		font-size: 24px;
	}
	header h1 {
		font-size: 5rem;
	}
	img {
		margin-bottom: 1rem;
	}
}
@media only screen and (max-width: 40em) {
	html {
		font-size: 16px;
	}
	header h1 {
		font-size: 5rem;
		word-break: break-word;
	}
	img {
		margin-bottom: 1rem;
	}
    .row {
        grid-template-columns: 1fr !important;
        grid-template-rows: [logo-start] 20vh [logo-end] max-content;
    }
    .row.full {
        grid-template-rows: 1fr;
    }
    .logo {
        grid-row: logo;
        grid-column: initial;
    }
    .logo img {
        max-height: 20vh;
        min-width: 0;
        width: auto;
        margin: 0;
        max-width: 100%;
    }
}


