26 lines
520 B
CSS
26 lines
520 B
CSS
html {
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
body {
|
|
/* white to black linear noise gradient spanning from top to bottom */
|
|
background-image:
|
|
url('https://ed.brz9.dev/assets/svg/noise.svg'),
|
|
linear-gradient(to bottom right, #2e3551, #0d747d);
|
|
}
|
|
|
|
@font-face{
|
|
font-family: inter;
|
|
src: url("https://ed.brz9.dev/assets/fonts/inter/Inter-Regular.woff");
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
body {
|
|
font-family: inter;
|
|
color: #e9d2d2;
|
|
height: 100%;
|
|
}
|
|
|