Spaces:
Sleeping
Sleeping
File size: 1,234 Bytes
7716bcb |
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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
:root {
--green: #00ff9d;
--orange: #ff9900;
--bg-dark: #0a0a0a;
}
body, html {
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--bg-dark);
font-family: 'Orbitron', sans-serif;
}
.fullscreen-bg {
position: relative;
width: 100vw;
height: 100vh;
background: radial-gradient(circle at center, #001a12, #000000);
}
#molecule-canvas {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
}
.centered {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 1;
}
.title {
font-size: 3em;
color: var(--green);
text-shadow: 0 0 20px var(--green);
}
#enter-btn {
padding: 15px 40px;
font-size: 1.5em;
background: var(--green);
color: black;
border: none;
cursor: pointer;
border-radius: 8px;
box-shadow: 0 0 20px var(--green);
animation: pulse 1.5s infinite;
}
#enter-btn:hover {
background: var(--orange);
box-shadow: 0 0 20px var(--orange);
}
@keyframes pulse {
0% { box-shadow: 0 0 10px var(--green); }
50% { box-shadow: 0 0 30px var(--green); }
100% { box-shadow: 0 0 10px var(--green); }
}
|