@import url("http://martinkraft.com/css/main.css");
:root {
  --primary: #000;
  --secondary: rgb(37, 91, 130);
  --tertiary: #FA0;
  --bg: #EEEEEE;
  --bg-card: #FFF;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

/*
    body, * {
        font-family: sans-serif;
    }
*/
.card {
  max-width: 26em;
  background-color: var(--bg-card);
  color: var(--primary);
  padding: 1.4em;
  border-radius: 0.2em;
}

code {
  font-family: monospace;
  color: var(--secondary);
}

ul {
  list-style: none;
  padding-left: 0;
}
ul li::before {
  content: "// ";
}

/*
a{
    color: var(--secondary);
}
button, input[type="file"] {
    background-color: var(--tertiary);
}
*//*# sourceMappingURL=base.css.map */