/*
  SIL Open Font licensed font from https://fontlibrary.org/en/font/single-day-regular
*/
@font-face {
  font-family: "handwriting";
  src: url("single_day_regular.ttf");
}

/*
  Make sure width and height measurements include padding and borders.
*/
* {
  box-sizing: border-box;
}

html {
  background: dimgray;
}

body {
  background: antiquewhite;
  color: black;
  box-shadow: 0 0 1em black;
  margin-left: auto;
  margin-right: auto;
  padding: 3%;
  max-width: 640px;
}

header, footer {
  text-align: center;
}

aside {
  text-align: center;
}

img {
  border: 1px solid black;
  border-radius: 20px;
  display: block;
  height: auto;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
}

main {
  font-family: handwriting;
  font-size: larger;
}