@import 'reset.css';

:root {
  font-size: 12pt;
  --content-width: 45rem;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  padding: 1rem;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 6rem;
}


header {
  margin-top: 3rem;
  margin-bottom: 6rem;
}

a {
  color: black;
}

header a {
  text-decoration: none;
}
header a:hover {
  text-decoration: underline;
}

h2 {
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

p {
  margin-bottom: 1rem;
}

img {
  width: 400px;
  max-width: 100%;
  margin: 2rem 0;
}

@media only screen and (max-device-width: 430px) {
  header {
    margin-bottom: 3rem;
  }
}

.mb0 {
  margin-bottom: 0;
}
