|
1 | | -@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap'); |
2 | | - |
3 | 1 | html {
|
4 | 2 | font-size: 10px;
|
5 | 3 | background: #2980b9; /* fallback for old browsers */
|
6 | 4 | background: linear-gradient(300deg, deepskyblue, darkviolet, blue);
|
7 | 5 | background-size: 180% 180%;
|
8 | | - animation: gradient-animation 18s ease infinite; |
| 6 | + animation: gradient-animation 15s ease infinite; |
9 | 7 | }
|
10 | 8 |
|
| 9 | +* { |
| 10 | + padding: 0; |
| 11 | + margin: 0; |
| 12 | + box-sizing: border-box; |
| 13 | +} |
11 | 14 | body,
|
12 | 15 | html {
|
13 | | - margin: 0; |
14 | | - padding: 0; |
15 | | - font-family: 'Montserrat', sans-serif; |
16 | 16 | height: 100%;
|
17 | 17 | }
|
| 18 | +body { |
| 19 | + font-family: "Raleway", sans-serif; |
| 20 | + text-rendering: optimizeLegibility; |
| 21 | + -webkit-font-smoothing: antialiased; |
| 22 | + -moz-osx-font-smoothing: grayscale; |
| 23 | +} |
18 | 24 |
|
19 | 25 | .container {
|
20 | 26 | display: grid;
|
|
0 commit comments