@import url("hpFont.css");
/* Normalize CSS */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font: 16px/1 'HPSimplified';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, blockquote, figure, ol, ul {
  margin: 0;
  padding: 0;
}
main, li {
  display: block;
}
h1, h2, h3, h4 {
  font-size: inherit;
}
strong {
  font-weight: bold;
}
a, button {
  color: inherit;
  transition: 0.3s;
}
a {
  text-decoration: none;
}
button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* End Normalize CSS */

:root {
  --main-trim-color: #5a5a5a;
  --main-trim-font-color: #ffffff;
}
.appHeader {
  height:80px;
  background: var(--main-trim-color);
  color: var(--main-trim-font-color);
  width:100%;
  line-height: 80px;
  font-size:3em;
  text-align: center;
}

.appOptionButton {
  width:100%;
  background:#cccccc;
  display:grid;
  grid-template-columns: 100px 1fr;
  font-size:2em;
  margin:2px 0;
  height:72px;
  line-height: 72px;
  box-sizing: border-box;
}

.appOptionButton h2 {
  padding-left:30px;
}

.appButtonIMG {
  background:#e3e3e3;
}