2024-06-23 19:03:11 -05:00
|
|
|
|
2024-06-23 19:19:18 -05:00
|
|
|
#card {
|
2024-06-30 02:14:09 -05:00
|
|
|
background-color: rgba(25, 0, 70, 1);
|
2024-06-25 12:56:22 -05:00
|
|
|
/* backdrop-filter: blur(5px); */
|
2024-06-23 19:19:18 -05:00
|
|
|
}
|
2024-06-23 19:03:11 -05:00
|
|
|
.magicStuff {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
height: 0;
|
|
|
|
z-index: 0;
|
2024-06-26 18:18:14 -05:00
|
|
|
pointer-events: none;
|
2024-06-23 19:03:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.magicContainer {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
top: 0px;
|
|
|
|
left: 0vw;
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.particle {
|
|
|
|
position: absolute;
|
|
|
|
width: 5px;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
background-color: rgb(100, 70, 255);
|
|
|
|
/* background-image: radial-gradient(rgba(175, 0, 255, 1) 0% 25%, rgba(175, 0, 255, 0.6) 25% 50%, rgba(175, 0, 255, 0.3) 50% 75%, rgba(0, 0, 255, 0)); */
|
|
|
|
border-radius: 50%;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: linear-gradient(black, rgb(50, 0, 90));
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes sway {
|
|
|
|
from {
|
|
|
|
transform: translateX(-30px);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: translateX(30px);
|
|
|
|
}
|
|
|
|
}
|