Spaces:
Runtime error
Runtime error
File size: 921 Bytes
03e545a 6ebba8f 03e545a 2d93ee9 6ebba8f 03e545a 6ebba8f 2d93ee9 03e545a 2d93ee9 6ebba8f 2d93ee9 03e545a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
:root {
--glass-bg: rgba(255, 255, 255, 0.15);
--glass-border: rgba(255, 255, 255, 0.35);
--blur: 16px;
--radius: 20px;
--glare: radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
position: relative;
overflow: hidden;
}
body::before,
body::after {
content: '';
position: absolute;
width: 300px;
height: 300px;
background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5), transparent);
filter: blur(100px);
z-index: 0;
mix-blend-mode: overlay;
opacity: 0.6;
}
body::before {
top: -80px;
left: -80px;
}
body::after {
bottom: -80px;
right: -80px;
}
|