#title {
    position: absolute;
    text-align: center;
    color: var(--gr);
    font-family: poppins,sans-serif;
    font-size: 1.5vmax;
    opacity: 0.75;
    border-radius: 1vmax;
    cursor: pointer;

    top: 9.2vmax;
    left: 28.3vmax;

    z-index: 100;

    transition: opacity 0.3s ease,
        scale 0.3s ease,
        background 0.2s ease,
        backdrop-filter 0.1s ease,
        padding-left 0.5s ease,
        padding-right 0.5s ease;
}
#title:hover {
    opacity: 1;
    scale: 2;
    background: rgba(118,91,201, 0.25);
    backdrop-filter: blur(0.2vmax);
    padding-left: 1vmax;
    padding-right: 1vmax;
}
#noresponse {
    pointer-events: none;
}

#priceactive {
    background: #00ff0933;
    border-radius: 1.5vmax;
}