
canvas {
    box-shadow: 0px 10px 30px rgba(143, 143, 143, 0.3);
    border-radius: 0px;
}

#parent-div {
    height: 100vh;  
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 20px;
}

#params-div {
    width: 420px;
}
#params-div * {
    margin: 10px;
}
#params-div button {
    width: 75%;
}

#canva-parent {
    width: 70%;
    height: 100%;
    margin: 20px;
}

@media (max-width: 768px) {

    #parent-div {
        height: 200vh;
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        align-items: flex-start;
    }

    #params-div {
        width: 100%;
    }
    
    #canva-parent {
        width: 95%;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
}