
:root {
  --paper: #fff;
  --ink: #1a1a1a;
  --accent: #0088FF;
  --rule: #e5e0d5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

h1, h2, p, ul, section, footer {
    margin: 1.5em 0;
}

h1 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4em;
  color: #777;
}

h2 a {
    color: inherit;
}

h1 + h2, h2 + p {
    margin-top: -1.5em;
}

hr {
    border: none;
    border-top: 1px solid var(--rule);
}

footer {
    margin-top: 4em;
    font-size: 0.95rem;
    color: #ccc;
}
footer a {
    color: #ccc;
}

.app {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
}
.app p {
    margin: 0;
    font-size: 0.8em;
    font-weight: 600;
}

.app .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-image: url(icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 18px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.03);
}
.app.keep .icon {
    background-image: url(images/keep.png);
}
.app.party .icon {
    background-image: url(images/party.png);
}
.app.wild {
    margin-left: 32px;
}
.app.wild .icon {
    background-image: url(images/wild.png);
}

.app.the {
    color: #ccc;
}
.app.the p {
    font-weight: 400;
}
.app.the .icon {
    width: 32px;
    box-shadow: none;
}

@media (max-width: 600px) {
  body {
    font-size: 18px;
  }
}
