/ src / sass / base / _typography.scss
_typography.scss
 1  body {
 2    font-family: "Poppins", sans-serif;
 3    // font-size: 1.6rem;
 4  }
 5  
 6  html {
 7    font-size: 10px;
 8  }
 9  
10  a {
11    text-decoration: none;
12  }
13  
14  .padding {
15    padding: 40px 112px;
16    width: 100%;
17    box-sizing: border-box;
18  }
19  
20  .maxWidth {
21    margin: 0 auto;
22    max-width: 1440px;
23    width: 100%;
24    height: 100%;
25  }
26  
27  @media screen and (max-width: 768px) {
28    .padding {
29      padding: 27px 16px;
30    }
31  }