29 lines
376 B
CSS
29 lines
376 B
CSS
:root {
|
|
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
background-color: #0D0D0D;
|
|
}
|
|
|
|
html{
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
place-items: center;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3.2em;
|
|
line-height: 1.1;
|
|
color: #EAEAEA;
|
|
text-align: center;
|
|
}
|
|
|
|
h2{
|
|
color: #EAEAEA;
|
|
} |