html,
body {
    height: 100%;
}

#container {
    width: 100%;
    height: 100%;

}


/*First Row */
#navbar {
    max-height: fit-content;
    height: fit-content;
    margin-bottom: 23px;
}

#title {
    display: flex;
    justify-content: center;
    padding: 3px;
    align-items: center;
}

/* Second Row */

#controls {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}

#colors{
    display: flex;
    justify-content: space-between;
    width: 50%;
    max-width: 500px;
}

.color{
    border: 2px solid black;
    margin: 1px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    cursor: pointer;
}


#additional{
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-evenly;
}

#sizeSelect {
    width: 50px;
}



#buttonContainer{
    display: flex;
    justify-content: space-between;
    width: 70px;
}


.buttons{
    cursor: pointer;
    width: 30px;
    height: 30px;
}




/* Third Row */


@media only screen and (max-width:800px) {
    #title {
        font-size: 15px;
    }

}
