 *{
        box-sizing: border-box;
        font-family: 'Playfair Display', serif;
    }

    body{
        margin: 0;
        background: rgb(22, 22, 22);
    }

    .main_container{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        outline-offset: -5px;
        color: white;
        font-size: 42px;
    }

    .main_container span:nth-child(1){
        font-weight: 100;
        font-size: 4vh;
        color: rgb(255, 255, 255);
        padding: 15px;
    }

    .products_container{
        width: 500px;
        max-width: 90vw;
        min-height: min-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product_block{
        width: 100%;
        height: min-content;
        outline: 1px solid rgba(255, 255, 255, 0.151);
        font-size: 24px;
        background:rgb(32, 32, 32);
        border-radius: 12px;
        padding: 15px 25px;
        display: flex;
        flex-direction: column;
        transition: 0.2s;
        cursor: pointer;
    }

        .product_block:hover{
            transform: scale(97.5%);
            filter: brightness(90%);
        }

    h1{
        font-size: 24px;
        margin: 0px;
        margin-block: 0px;
        margin-inline: 0px;
    }

    .product_block span{
        font-size: 16px;
        color: rgba(255, 255, 255, 0.308);
    }

    .title_container{
        flex: 1;
    }

    .product_content{
        display: flex;
        flex-direction: row;
        flex: 1;
    }

    .product_status{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 15px;
    }

    .status_dot{
        background: lime;
        width: 10px;
        aspect-ratio: 1;
        border-radius: 100%;
        animation: DotPulse 2s infinite alternate ease-in-out;
    }

    @keyframes DotPulse {
        from{
            box-shadow: 0px 0px 15px 0px rgb(0, 172, 0);
        }

        to{
            box-shadow: 0px 0px 25px 0px lime;
        }
    }


    .pbbut{
        width: max-content;
    }