*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #333;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    min-height: 100vh;  
}

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

.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{
    cursor: pointer;
    padding: 6px 20px;
    color: #fff;
    border: 2px #005CC8 dashed;
    }

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

.filters ul li label{
color: white;
}

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

.filters ul li a,span{
    cursor: pointer;
    text-decoration: none;
    color: white;
    padding: 8px 20px;
    background-color:#005CC8;
}

@media screen and (max-width:650px){
    .container{
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .img img,canvas {
        max-width: 80vw;
    }
}