/* general style for html and body */

html,
body {
    height: 100%;
    font-size: inherit;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: $link-color;
    text-decoration: none;
    outline: none;
    @include transition(all linear .2s);
    &:hover,
    &:focus {
        text-decoration: none;
        outline: none;
        color: $link-hover-color;
    }
}
