:root {
  --blue: #E3F2F5;
  --dark: #111111;
  --gray: #EEEEEE;
  --lightGray: #DDDDDD;
  --green: #D1E4DD;
  --yellow: #FFFFE0;
  --white: #FFFFFF;
  --black: #1E1E1E;
  --light: rgba(17,17,17,0.4);

  --active: #3858E9;
  --hover: #3858E9;
  --text: #000;
  --background: #F0F0F0;
  --min-radius: 2px;

  --canvasWidth: 1612px;
}

@media all and (max-width: 1440px) {
  :root {
    --canvasWidth: 1212px;
  }
}

sub, sup {
  font-size: 70%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

strong {
  font-weight: 600;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  font-size: 1.4em;
  line-height: 145%;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  color: var(--text);
  background: var(--background);

  overflow: hidden;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  transition: font-size 200ms ease-in-out;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

p {
  line-height: 145%;
}

a {
  color: var(--active);
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease-in-out;
}

a:hover {
  text-decoration: underline;
}

.Body {
  position: relative;
}

.Button.is-primary.is-disabled {
  color: rgba(255, 255, 255, 0.5);
}

.Button.is-primary {
  background: var(--active);
  color: var(--white);
  padding: 11.5px 12px;
  border-radius: 2px;
}

button {
  margin: 0;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1em;
  outline: none;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  -webkit-appearance: none;
}

button:hover {
  cursor: pointer;
}

.Backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

kbd {
  background-color: #f6f8fa;
  border-bottom-color: rgb(175 184 193 / 40%);
  border: 1px solid rgba(175,184,193,0.4);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgba(175,184,193,0.4);
  color: #24292f;
  display: inline-block;
  font: 11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
  line-height: 10px;
  padding: 3px 5px;
  vertical-align: middle;
}
