body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: system-ui, sans-serif;
  overflow-x: hidden;
  background: white;
}
button, input {
  font-size: large;
  font-family: inherit;
}
a {
  color: #1a0dab;
}
.App {
  text-align: center;
}

.App-header, .App-footer {
  background-color: #233041;
  padding: 20px;
  color: #efefef;
}

.App-header {
  border-bottom: 6px solid coral;
}

.App-footer {
   border-top: 6px solid coral;
}

.App-header a, .App-footer a{
  color: #efefef;
}

.App-header a:hover, .App-footer a:hover {
  text-decoration: none;
  color: #efefef;
}

h1 {
  font-size: 40px;
  margin: 0px;
}

h2 {
  margin: 30px 0 20px;
}

.smallprint h2 {
  margin: 20px 0 20px;
}

@media (max-width: 480px) {
  h1 {font-size: 30px;}
  h2 {margin: 30px 0 15px;}
  .App-header, .App-footer {padding: 10px;}
}

.App-body {
  font-size: medium;
  color: #111;
  padding: 20px;
}

.smallprint {
  font-size: small;
}

ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0;
}

li {
  width: 320px;
  display: block;
  margin: 10px;
  box-shadow: 0 2px 6px 0 hsla(0, 0%, 0% ,0.2);
  padding: 14px 10px 0 80px;
  border-radius: 5px;
  text-align: left;
  position: relative;
  min-height: 77px;
}
li p {
  margin: 0 0 14px;
  font-size: smaller;
}
li img {
  width: 50px;
  position: absolute;
  left: 15px;
  top: 20px;
  border-radius: 25px;
}

#home {
  position: absolute;
  text-decoration: none;
  font-size: medium;
  top: 10px;
  left: 10px;
  opacity: .8;
}

#home::after {
  content: ' Home';
}