html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
  font-family: Ubuntu, Verdana, Helvetica, Arial, sans-serif;
  font-size: 85%;
}

.bodydiv {
	flex: 1;
  display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
}

.datadiv {
	text-align: center;
	max-height: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.datadiv p:last-child{
	padding-bottom: 20px;
}

.logo {
  max-width: 100%;
	max-height: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
	object-fit: contain;
  box-sizing: border-box;
}

.footerdiv {
	height: 20px;
  font-family: Verdana, sans-serif;
  background-color: #FFFFFF;
	position: fixed;
	bottom: 0;
	left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
	padding: 4px 0;
 	box-sizing: border-box;
	z-index: 100;
}

@media (max-width: 768px) {
  .datadiv {
    padding: 20px;
  }

  .footerdiv {
    font-size: 0.65em;
  }
}
