* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

p {
	 font-family: "Story Script", sans-serif;
}
/* Style the header */
.header {
	 font-family: "Libertinus Keyboard", system-ui;
  font-weight: 400;
  font-style: normal;
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
  font-size: 40px;
  
}

.map {
	  position: absolute;
  bottom: 0;
  padding-bottom: 10px;

}


/* Create three unequal columns that floats next to each other */
.column {
	font-family: "Story Script", sans-serif;
	font-weight: 400;
  font-style: normal;
  float: left;
  padding: 10px;
  position:relative;
  
}
.row {
	display: grid;
	grid-template-columns: 25% 50% 25%;
	grid-auto-flow: column;
	align-items: stretch;
}

/* Left and right column */
.column.side {
  
}


/* Middle column */
.column.middle {
  
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  align-items: stretch;
}


/* Style the footer */
.footer {
	font-family: "Story Script", sans-serif;
	font-weight: 400;
  font-style: normal;
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}