SHA256
23 lines
471 B
CSS
23 lines
471 B
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
background: #05070A;
|
|
min-height: 100dvh;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: radial-gradient(circle at center, rgba(88, 50, 168, 0.15) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
|
|
transform: translate(-50%, -50%);
|
|
z-index: -1;
|
|
filter: blur(100px);
|
|
pointer-events: none;
|
|
}
|