*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    width: 100%;
}
html{
    width: 100%;
    background-color: #fff;
    color: var(--text-primary-color);
    color: black;
    
}

main{
    width: 100%;
}
main section{
    width: 100%;
    padding: var(--padding-2xl);
    display: flex;
    gap: var(--gutter-lg);

      
}

.btn{
    padding: var(--padding-sm) var(--padding-lg);
    border: none;
    outline:none;
    
    background-color: #ffcc00;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    
    
    
}
#reset-btn{
    
    color: black;
    
}
#download-btn{
    
    color: black;
    
}
main section .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-lg );
    width: 70%  ;
    align-items: flex-start;
}


main section .right {
    width: 30%;
    background-color: #E0E0E0;
    padding : var(--padding-2xl);
}
main section .top{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gutter-md);
    width: 100%;

}
main section .left .bottom{
    background-color: #E0E0E0;
    border-radius: var(--border-radius-2xl);
    width: 100%;
    padding: var(--padding-2xl);
    aspect-ratio: 5/3;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;

       
}
main section .left .bottom .placeholder{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--gutter-md);
    
    
}
main section .left .bottom .placeholder i{
    font-size: 100px;
    margin-bottom: var(--margin-md);
    color: var(--text-teretiary-color);
}
main section .left .bottom .placeholder p{
    font-size: var(--font-size-2xl);
    color: var(--text-secondary-color);
}
main section .left .top .Header{
    width: fit-content;
    
    display: flex;
    justify-content: flex-start;
    background-color:#ffcc00;
    
    font-size: 48px;
    margin: 0;
    
border: none;
    outline:none;
    
    background-color: #ffcc00;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    
    
}
.button-row{
    margin-top: auto; /* pushes buttons down */
    display: flex;
    gap: var(--gutter-md);
    
}
main section .right .filter{
    display: flex;
    flex-direction: column;
    
    width: 100%;
}
main section .right .filter input{
    width: 100%;
    outline: none;
    
}
main section .right{
    display: flex;
    flex-direction: column;
    gap: var(--gutter-md);
    border: 4px solid #000;
    
    box-shadow: 4px 4px 0 #000;
}



canvas{
    max-width: 90%;
    height: 80vh;
    display: none;
    
}
.filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    
}

.filter {
    width: 100%;
    
}

.filter input[type="range"] {
    width: 100%;
}
