@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=PT+Serif&display=swap');


body {
	background-color: white;
	color: black;
font-family: 'PT Serif', serif;

}

h1, h2, h3, h4 {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;

}

zine-page-content {
	background-color: white;
	color: black;
}

button {
	color: white;
	transition: background-color 0.25s linear;
	border: 1px solid white;
	background-color: rgba(0,0,0,0.25);
	padding: 1em;
	width: 8em;
}

button:active {
	background-color: rgba(0,0,0,0.9);
}

button:hover {
	color: black;
	background-color: rgba(255,255,255,0.4);
}