<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

content  h1 {
	margin-top: 20px;
	text-align: center;
	font-family: 'Dosis', sans-serif;
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

main {
	box-sizing: border-box;
	display: grid;
	/* grid-template-columns: repeat(4, 1fr); */

	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr) );


	grid-column-gap: 50px;
	grid-row-gap: 50px;

	margin: 30px 50px 50px;
}

section {
	font-family: 'Alegreya', serif;
	/* align-self: center; */
}

section a {
	color: var(--col-accent);
	text-decoration: none;
	transition: 0.2s ease;
}

section a:hover {
	color: var(--col-highlight);
}

.speech-bubble {
	background-color: var(--col-bg-box);
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	font-size: 20px;
	line-height: 150%;
}

.speech-bubble-arrow-container {
	height: 20px;
	margin: 0 auto 15px;
}

.speech-bubble-arrow {
	width: 0; 
	height: 0; 
	border-top: 10px solid var(--col-bg-box);
	border-left: 10px solid var(--col-bg-box);
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	margin-left: 50px;
}


.playback-button {
	margin-top: 15px;
	font-size: 30px;
	color: var(--col-accent);
	background-color: var(--col-bg-box);
	border: none;
	transition: 0.2s ease;
}
.playback-button:hover {
	color: var(--col-highlight);
	cursor: pointer;
}
.playback-button:focus {
	outline: none;
	border: none;
}



.foreign {
	font-style: italic;
}



.spinning {
	-webkit-animation-name: spin;
	-webkit-animation-duration: 2000ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: spin;
	-moz-animation-duration: 2000ms;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: spin;
	-ms-animation-duration: 2000ms;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}




.author-portrait {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 100%;
	border: 4px solid var(--col-bg);
	background-color: var(--col-bg);
	transition: 0.2s ease;
}
.author-portrait:hover {
	border: 4px solid var(--col-accent);
	background-color: var(--col-accent);
}

.attribution {
	margin: auto;
	display: grid;
	grid-template-columns: 96px auto;
}

.attribution-textblock {
	margin-left: 10px;
	align-self: center;
	font-size: 18px;
}



#stats {
	max-width: 300px;
	margin: auto;
	text-align: center;
	color: gray;
	font-family: 'Alegreya', serif;
}
.stat-box {
	margin: 5px;
	padding: 5px;
}




@media screen and (max-width: 600px) {
	main {
		display: normal;
		grid-template-columns: 100%;
		margin: 25px 3vw;
		grid-row-gap: 60px;
	}

	.speech-bubble {
		font-size: 18px;
	}
}</pre></body></html>