/* 
    body {
        background-image: url('squid-town.png');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: left;
        background-size: auto 100%;
    }
*/


body, html {
	margin: 0;
	padding: 0;
	height: 100%;
    text-align: justify;
    /* font-family: "Quattrocento", serif; */
    font-family: "EB Garamond", serif;
}

div#archibald, div#arabella { 
    /* padding-left: 1.0em; padding-right: 1.0em; */
    margin-left: 1.25em;
    margin-right: 1.25em;
    text-align: justify;
}


h1 {
    font-family: "Pirata One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5em;
    text-align: center;
}

h2 {
    font-family: "Pirata One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 2.0em;
    text-align: center;
}

h3 { 
    font-family: "Pirata One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1.75em;
    text-align: center;
}

p {
    font-family: "EB Garamond", serif;
    font-size: 1.25em;
}
p.author { 
    padding-left: 1.0em; 
    font-weight: 700; }

span.bold {
    font-weight: 700;
}

.container {
	display: flex;
	height: 100vh; /* full viewport height */
	overflow: hidden;
}

.left {
	flex: 1;              /* take up to 50% width */
	max-width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	/* background: #000; /* optional background */
}

.left img {
	height: 100%;         /* full height */
	width: auto;          /* maintain aspect ratio */
	object-fit: cover;    /* in case you want crop/cover */
}

.right {
	flex: 1;              /* take up to 50% width */
	max-width: 50%;
	padding: 1rem;
	overflow-y: auto;     /* scrollable text */
	box-sizing: border-box;
}

/* Mobile handling */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}
	.left, .right {
		max-width: 100%;
		flex: none;
		height: 50vh; /* each half the screen */
	}
	right {
	overflow-y: auto;
	}
}
