/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE STYLES ===== */
html, body {
  height: 100%;  /* makes background stretch full screen */
  font-family: sans-serif; /* default font */
}

/* ===== BACKGROUND ===== */
body {
  background: url("https://64.media.tumblr.com/6978bc3e67feb10c1c91a0f87d40744a/1684b4443b6404fd-ce/s1280x1920/1e0464a85ab986a71940fd3ca15e40fa8776ce9a.gifv") no-repeat center center fixed;
  background-size: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges; /* fallback */
}
