31 lines
427 B
CSS
31 lines
427 B
CSS
|
@import url('redirect-anim.css');
|
||
|
|
||
|
/* @import is for the animation on the redirect page */
|
||
|
body {
|
||
|
color: white;
|
||
|
font-family: 'JetBrains Mono', sans-serif;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
#particles-js {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: fixed;
|
||
|
z-index: -999;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
z-index: -998;
|
||
|
position: fixed;
|
||
|
opacity: 0.25;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
z-index: 999;
|
||
|
position: fixed;
|
||
|
}
|