*
{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}


body
{
    background-color: #333;

}

.container
{
    background-color: #222;
    width: 80vw;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 5fr 1fr;
}

.img
{
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.img img , canvas
{
    max-width: 45vw;
    max-height: 60vh;

}

.upload input
{
    display: none;
}

.upload label
{
    color: #fff;
    padding: 8px 20px;
    border: 2px #fff dashed;
    cursor: pointer;
}


.filters ul li , .filters ul
{
    display: flex;
    flex-direction: column;
    gap: 25px;
    direction: rtl;
}

.filters ul li label
{
    color: #fff;
}

.filters ul li:last-child
{
    flex-direction: row;
    justify-content: space-around;
}

.filters ul li a , span
{
    color: #fff;
    padding: 10px 20px;
    background-color: #060;
    cursor: pointer;
    text-decoration: none;

}



@media screen and (max-width:650px)
{
    .container
    {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .img img , canvas
    {
        max-width: 80vw;
    }
}