.site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-image: linear-gradient(0deg, #00dedc, #115d89, #080f1c);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.star {
    position: absolute;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.header {
    width: var(--pcsize);
    height: 256px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 auto;
}

.header-logo {
    height: 256px;
    width: auto;
    margin: 0 auto;
    z-index: 2;
}

.cartbutton {
    width: 120px;
    height: 120px;
    margin-right: 70px;
    position: absolute;
    right: 0;
    top: 25%;
    background-image: url("/wp-content/themes/soul-de-lone/assets/img/site-parts/cart_close.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    transition: background-image 0.3s ease;
    z-index: 3;
}

.cartbutton:hover {
    background-image: url("/wp-content/themes/soul-de-lone/assets/img/site-parts/cart_open.png");
}

.header-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px;
    height: 256px;
    background: none;
    z-index: 1;
    pointer-events: none;
    margin: 0 auto;
}

.rune {
    font-size: 16px;
    fill: white;
    font-family: serif;
    dominant-baseline: middle;
    text-anchor: middle;
    pointer-events: none;
}
