body {
	background-color: #eee;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
}

p {
  margin: 0;
  text-align: center;
  line-height: 150%;
}

p img {
  vertical-align: middle;
}

em {
  font-weight: bold;
  font-style: italic;
  color: navy;
  white-space: nowrap;
}

a {
  white-space: nowrap;
}

#layout {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "top" "middle" "bottom";
  gap: 1rem;
}

#top {
  grid-area: top;
}

#splash {
  margin: 0 auto 0.5rem;
  display: block;
}

#middle {
  grid-area: middle;
  display: grid;
  grid-template-columns: repeat(2, 300px);
  justify-content: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
	text-align: center;
}

.icon {
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	border: 1px solid #ccc;
	width: 128px;
	background-color: white;
}

.qr-container {
  position: relative;
  margin: auto;
  margin-bottom: 40px;
}

.qr {
	top: calc(50% + 20px);
	left: calc(50% + 20px);
  position: absolute;
}

.button a {
	text-decoration: none;
	color: rgb(61, 119, 178);
	outline: 0;
	width: 100%;
}

.store img {
  margin: 5px 10px;
}

.disabled {
	pointer-events: none;
	opacity: 0.25;
}

#bottom {
  grid-area: bottom;
}

@media handheld, only screen and (max-width: 767px) {
	#splash {
		width: 100%;
	}
  #middle {
    grid-template-columns: repeat(2, auto);
    gap: 40px;
  }
  .qr-container {
    margin: auto;
  }
}
