38 lines
463 B
SCSS
38 lines
463 B
SCSS
/* styles of index */
|
|
|
|
/*
|
|
import partials
|
|
*/
|
|
@import 'reset';
|
|
@import 'palette';
|
|
|
|
body {
|
|
color: var(--col-text);
|
|
background-color: var(--col-bg);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5rem;
|
|
line-height: 5rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 2rem;
|
|
}
|
|
|
|
#particles {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -999;
|
|
}
|