:root {
  --primary-color: #ededed;
  --secondary-color: #444444;
  --third-color: #aaaaaa;
  --fourth-color: #ffffff;
}

/* DARK MODE */
.dark-theme {
  --primary-color: #444444;
  --secondary-color: #ededed;
  --third-color: #ffffff;
  --fourth-color: #aaaaaa;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: monospace;
  margin: 0;
  background-color: var(--primary-color);
  color: var(--third-color);
  font-size: 15px;
  line-height: 1.5;
}
/*# sourceMappingURL=resume.css.map */