@font-face {
    font-family: Inter_18pt-Regular;
    src: url('https://dev.muteduck.com/fonts/inter/Inter_18pt-Regular.ttf');
}


* {
    margin: 0px;
    padding: 0;
    font-family: 'Inter_18pt-Regular', 'Calibri';
    font-size: 1em;
    outline: none;
}

html, body {
    background-color: #1c1b22;
    height: 100vh;
}

main {
    padding: 20px;
    height: 100%;
    color: #fff;
}

a:link {
    color: #2461e5;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 6px;
}

a:hover {
    color: #2461e5;
    text-decoration: underline;
}

a:visited {
    color: #2461e5;
}

a:active {
    color: #2461e5;
}

p {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 6px;
}

/*.primary {
    background-color: ;
    padding: ;
    margin: ;
    font-weight: ;
    font-size: ;
    color: ;
    border-radius: ;
    border: ;
}

.secondary {
    background-color: ;
    padding: ;
    margin: ;
    font-weight: ;
    font-size: ;
    color: ;
    border-radius: ;
    border: ;
}

.tertiary {
    background-color: ;
    padding: ;
    margin: ;
    font-weight: ;
    font-size: ;
    color: ;
    border-radius: ;
    border: ;
}*/

pre {
    background-color: #1c1b22;
    color: #fff;
}




#button {
    background-color: #fecaca;
    color: #ce0a0a;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;

    &:hover {
        background-color: #fca5a5;
    }

    &:active {
        color: #fff;
        background-color: #f87171;
    }
}






/*
.danger-alert {
  color: red;
  // light background color of same hue
  background-color: lighten(red, 40%);
}

button:hover {
  // darken the background color on hover
  background-color: darken(#eee, 10%);
}*/