/* Base */
body {
  background-color: #60755F;
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

h1 {
  font-size: 1.05em;
}

h2, h3 {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

p {
  margin-top: 0;
}

a {
  color: inherit;
}

ul {
  padding-left: 1.25em;
}

footer {
  margin-top: -4.2em;
  padding: 1em;
  text-align: right;
}

footer a {
  text-decoration: none;
  padding: 1em;
}
footer a:hover {
  text-decoration: underline;
}

/* Index */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 4em);
  padding: 2em;
}

.card {
  max-width: 450px;
}

/* Page */

.page {
  background-color: #fff;
  color: #60755F;

  margin: 2em;
  padding: 3em;

  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;

  font-size: 1.1em;
  line-height: 1.4;
}

/* .content {
  max-width: 70ch;
} */

/* Responsive */

@media screen and (max-width: 480px) {

  body {
    font-size: 13px;
  }

  .page {
    padding: 2em;
    margin: 1.5em;
  }

}