| /* CSS Reset */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| html { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| min-height: 100vh; | |
| } | |
| button { | |
| font-family: inherit; | |
| cursor: pointer; | |
| } | |
| input, | |
| textarea, | |
| select { | |
| font-family: inherit; | |
| } | |
| ul, | |
| ol { | |
| list-style: none; | |
| } | |
| a { | |
| text-decoration: none; | |
| color: inherit; | |
| } | |
| /* Made with Bob */ | |