/** shared variables **/
/* update these to style */
body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  background: var(--bg-colour);
  color: #393b3c;
  letter-spacing: 1px;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
  max-width: 100%;
}

img {
  height: auto !important;
}

h1, h2, h3, h4 {
  text-transform: uppercase;
}

h1, h2, h3 {
  letter-spacing: 2px;
}

.clear-float {
  clear: both;
}

.highlight {
  color: var(--secondary);
}

.button {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 30px;
  max-width: 100%;
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
  box-sizing: border-box;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.button:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

@media only screen and (max-width: 300px) {
  .button {
    padding: 10px;
    width: 100%;
  }
}

/*# sourceMappingURL=editor.css.map*/