/**
 * Theme Name: Crittercam
 * Version: 1.0
 * Author: Sofia Rosenblatt
 * License: GPLv2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: crittercam
 */

 /* === Base Styles === */
:root {
  --dark-gray: #222222;
  --dark-blue: #4f5d75;
  --gray: #353535;
  --light-blue: #b9d6f2;
  --orange: #ef8354;
  --silver: #bfc0c0;
  --dark-green: #687351;
  --light-green: #9ba17f;
  --off-white: #e8e4db;
  --beige: #c9c1ae;
  --body-font: "Avenir light";
  --title-font: "Avenir Black";
  --post-title-font: "Avenir Roman";
  --post-content-font: "Caladea", serif;
}

*{
    box-sizing:border-box;
}

body, html{
  margin: 0 !important;
  padding: 0;
  display: inline-block;
}

html {
  background: var(--dark-gray);
}

body {
  background: white;
  color: black;
}

main {
  min-height: 60vh;
  z-index: 1;
}

.wp-editor-wrap {
  width: 100%;
}