html{
    padding: 0;
    margin: 0;
    background-color: rgb(61, 56, 56);
    color: white;
}
main{
    display: flex;
    flex-direction: row;
}

#imageContainer{
    flex: 3;
    width: 200%;
    /* margin-right: 0%; */
}
#buttonWrapper{
    flex: 1;
    /* width: 100%; */
    text-align: right;
    display: flex;
    flex-direction: column;
}
#editor{
    color: white;
    width: 30%;
}
canvas{
    width: 100%;
}
#clearDownload{
    display: flex;
    flex-direction: row;
}
#clearDownload > button{
    text-align: center;
    border-bottom: none;
}
#chooseFile{
    display: flex;
    padding: 0.7rem;
    flex-direction: column;
    color: black;
    font-size: 1.5rem;
    font-weight: 500;
    background-color: rgb(128, 120, 120);
}
button{
    width: 100%;
    background-color: black;
    color: white;
    border-bottom: 1px solid white;
    padding: 0.5rem;
    font-family: 0.7rem;
    font-weight: 300;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    height: 2.8rem;
}
#chooseFile > button{
    width: 50%;
    background-color: white;
    color: black;
}

@media only screen and (min-width: 600px) {
    body{
        max-width: 800px;
    }
}