/* index.css - Global Reset */
/* 博客同款字体（阿里妈妈字体，来自 lolimeow 主题 boxmoe） */
@font-face {
  font-family: 'boxmoe';
  src: url('../fonts/alimama.woff2') format('woff2');
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'boxmoe', 'Microsoft JhengHei', Georgia, Times, serif, 'Microsoft YaHei', 'Open Sans', sans-serif;
  line-height: 1.6;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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