body {
	display: grid;
	gap: 0em 0em 0em;
	padding: 2em;
	font-family: "Sans", Calibri, Raleway, Helvetica, sans-serif;
	font-size-adjust: 0.55; /* Wert der Primärschrift */
	font-size: 1,5 em;
	background-color: rgb(191, 228, 252);
	margin-top: 0px;
	margin-bottom: 0px;
    line-height: 1.4;
	/*align-items: center*/
	row-gap: 0em;
	/* hyphens */
    moz-hyphens: auto;
    o-hyphens: auto;
    webkit-hyphens: auto;
    ms-hyphens: auto;
    hyphens: auto;
	text-align: justify;
	
}

/* 3-spaltiges Layout für breitere Viewports */
@media (min-width: 45em) {
	body {
		grid-template-columns: 1fr 3fr 1fr;
		grid-template-rows: auto 1fr min-content;
	}
}

footer {
	grid-column: 1 / -1;
}
h1 {
  text-align: center;
  font-family: "PT Serif", Cambria, Georgia, serif;
}
h2 {
	font-family: "PT Serif", Cambria, Georgia, serif;
}
h3{
	font-family: "PT Serif", Cambria, Georgia, serif;
}
button {
  display: inline-block;
  background-color: #0061c6;
  border-radius: 10px;
  border: 4px double #cccccc;
  color: #eeeeee;
  text-align: center;
  font-size: 24px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  }