canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 10;
    pointer-events: none;
}

.video-link {
    z-index: 9999;
}

.memorial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.memorial-box {
    width: 75%;
    height: 75%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.memorial-box-text {
    white-space: nowrap;
    text-align: center;
    font-size: 2vh;
    text-shadow: 2px 2px 2px rgba(195, 0, 255, 0.631);
    font-family: 'Charm', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: whitesmoke;
    z-index: 99;
    margin-top:6px;
}

.memorial-box-text-title {
    white-space: nowrap;
    text-align: center;
    font-size: 2vh;
    text-shadow: 2px 2px 2px rgba(195, 0, 255, 0.631);
    font-family: 'Charm', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    color: whitesmoke;
    z-index: 99;
}

.memorial-candle {
    width: 16px;
    height: auto;
    margin-bottom: 16px;
}

.memorial-space {
    width: 64px;
    height: auto;
    margin-top: 16px;
    margin-bottom: 8px;
}

.starbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0));
    z-index: 2;
}

.star {
    position: absolute;
    top: -100vw;
    left: -100vh;
    width: 1px;
    height: 1px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px 2px #d4ff00;
}

.star-medium {
    width: 2px;
    height: 2px;
}

.star-big {
    width: 3px;
    height: 3px;
}

.star-oblique {
    width: 1px;
    height: 6px;
}

.rotating-clockwise {
    animation: rotatecw 30s linear infinite;
}

.rotating-counter-clockwise {
    animation: rotateccw 30s linear infinite;
}

@keyframes rotatecw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateccw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}