@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  box-sizing: border-box;
}

body {
  text-align: center;
  font-family: "Poppins", sans-serif;
  background-image: url(/~smallbird/images/grid.png);
  background-repeat: repeat;
  font-size: 10px;
  color: #333;
}

a {
  color: #F93D00;
}

h1,
h2,
h3 {
  font-family: "Caveat", sans-serif;
  font-weight: normal;
}

h1 {
  margin-bottom: 0;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
  margin: 0;
}

#page {
  max-width: 800px;
  width: calc(100% - 20px);
  margin: 0 auto;
  text-align: left;
}

header {
  width: 100%;
  min-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

header h1 {
  font-size: 5em;
}

header h1 img {
  width: 100%;
}

main {
  display: flex;
  justify-content: space-between;
  margin-top: -50px;
}

main img {
  max-width: 100%;
}

#left {
  order: 1;
}

#right {
  order: 3;
}

#left,
#right {
  width: 150px;
  background-color: white;
  padding: 10px;
  margin-top: 100px;
}

#left ul,
#right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#left h3,
#right h3 {
  font-size: 2em;
}

#articles {
  order: 2;
  width: calc(100% - 320px);
  flex-grow: 0;
  background-image: linear-gradient(to bottom, rgba(255, 228, 240, 0) 0%, #ffe4f0 100px);
  font-size: 1.2em;
}

#articles .navlinks {
  font-size: 1.25em;
  text-align: center;
}

#articles h2,
#articles h3 {
  text-align:center;
}

ul.posts li {
  border-bottom: 1px #000 dotted;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

ul.posts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nav {
  font-size: .8em;
  border-top: 1px white dotted;
  padding-top: .5em;
}
