
* {
  margin: 0;
  padding: 0;
}

html {
	font-family: "helvetica";
	font-size: 16pt;
}

body {
  background-color: #fafafa;
}

.body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
	align-items: center;
}


.title {
	padding: 10px;
	font-size: 2em;
	text-align: center;
	border-style: solid none;
	border-color: #05a535;
}
	
.status {
  padding: 20px;
  font-size: 2em;
	text-align: center;
}

.status-yes {
  background-color: #05a535;
}

.status-no {
  background-color: #a50535;
		color: #fafafa;
}


.flyer-section {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
}

.flyer-page-control {
	font-size: 4em;
	transform: scale(1,4);
	color: #dddddd;
  cursor: pointer;
}

.flyer-page {
	max-width: 100%;
}


@media only screen and (max-width: 500px) {
	html {
		font-size: 8pt;
	}

}

