body{
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.input{
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    padding: 10px;
    border: solid 1px black;
    display: flex;
    flex-direction: column;
    background-color: white;
    z-index: 20;
}
.input > p{
    height: fit-content;
    margin: 2px;
    text-align: center;
}
.input > p > input{
    width: 50px;
}
#color{
    width: 250px;
}
#Randomize{
    width: auto;
}
.wrapper{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.canvas{
    position: relative;
    max-height: 80%;
    width: 50%;
    object-fit: contain;
    border: 0.01px solid black;
}
.examples{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.row{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 50px;
}
.rowimg{
    width: 40%;
    height: 450px;
    border: solid 1px black;
    background-color: black;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#img1{
    background-image: url('Coffee_Mug_02.png');
}
#img2{
    background-image: url('Coffee_1.png');
}
