@property --pattern-seed {
    syntax: "<number>";
    initial-value: 123456;
    inherits: true;
}

@property --pattern-background {
    syntax: "<color>";
    inherits: false;
    initial-value: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.worklet-canvas {
    width: 100vw;
    height: 100vh;
    background-image: paint(voronoiPattern);
}

.hover-card {
    width: 600px;
    height: 300px;
    background-color: #fff;
    padding: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
}