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

html{
    background-color: black;
    height: 100vh;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.container{
    display: flex;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.containerPadding{
    padding: 0.5rem;
}

.left{
    max-width: 50%;
    flex-grow: 1;
}

#p5Container{
    position: relative;
    width: 100%;
    height: 100%;
}

canvas{
    width: 100%;
    height: 100%;
}

.right{
    max-width: 50%;
    flex-grow: 1;
}

.controls{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 3px gray solid;
}

.controls button,
.controls input[type="file"]{
    padding: 4px 12px;
    font-size: 1.5rem;
}

.controls input[type="file"]{
    width: 100%;
    max-width: fit-content;
}

.part1,
.part2,
.part3{
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

.part1{
    border-bottom: 1px white solid;
    padding-bottom: 0.5rem;
}

.part2{
    border-bottom: 1px white solid;
    padding-bottom: 0.5rem;

    flex-direction: column;
    flex-wrap: nowrap;

    font-size: 1.25rem;
}

.part3{

}

.horizontal{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.underline{
    text-decoration: underline;
}

.containerSplitBorderLeft{
    border-right: 2px gray solid;
    padding-right: 0.5rem;
}

.flexColumnGap{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.previewImage{
    width: 100px;
    height: 100px;
    background-color: rgb(128, 128, 128);
    display: flex;
    justify-content: center;
}

.previewImage img{
    max-width: 100%;
    max-height: 100%;
}

.amountInput{
    color: white;
    background-color: rgb(100, 100, 100);
    border-color: rgb(100, 100, 100);;
}