*, *::after, *::before{
    box-sizing: border-box;
    margin: 0px;
    padding:0px;
    text-align: center;
}
#outer-container{
    width: 300px;
    height: 300px;
    margin: auto;
    margin-top: 50px;
    
}

#header-container{
    width: 300px;
    height: 50px;
    display: flex;
    font-size: 10px;
}


select{
    width:100px;
    font-size: 10px;
}

input[type="number"]{
    width: 50px;
    height: 20px;
}

button{
    display:block;
    font-size: 10px;
}
#color-container{
    width: 300px;
    height: 200px;
    display: flex;
    
}
.colorStrip{
    flex-grow: 1;
}

#color-name-container{
    width: 300px;
    height: 50px;
    display: flex;
}
.colorStripName{
    flex-grow: 1;
    margin: auto;
    text-align: center;
    font-size: 11px;
}

#baseColorPicker, #basePaletterPicker, #colorTogenerate{
    width: 100px;
}