//== Base
//
//## CSS Reset

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    border: 0;
    color: $color-base-100;
    font-family: $font-family-base;
    font-size: $font-size-base;
    margin: 0;
    min-height: 100%;
    padding: 0;
}

form {
    margin: 0;
}

html {
    height: 100%;
}
