tech-envision
Add CORS and modernize frontend
6ebba8f
raw
history blame
921 Bytes
: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;
}