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



body{
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    font-family: sans-serif;
}

form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.81rem;
    padding: 1rem 0.5rem;
    background-color: #1F2937;
}

button{
    background-color: #3D4B60;
    padding: 0 0.69rem;
    text-wrap: nowrap;
    border-radius: 0.25rem;
    border: none;
    
}

select{
    background-color: #1F293A;
    padding: 0 0.81rem;
    border-radius: 0.38rem;
}


input, select, button{
    height: 2rem;
    color: white;
    cursor: pointer;
}

.colors-row{
    display: flex;
    height: 100%;
    flex-grow: 1;

}

.color-column{
    height: auto;
    display: flex;
    flex-grow: 1;
    background-color: #3D4B60;
    width: 20%;
}
.color-text-row{
    display: flex;
    
}

.color-text-column{
    padding: 1rem 0;
    min-height: 2rem;
    display: flex;
    width: 20%;
    flex-grow: 1;
    background-color: #1F2937;
    color: white;
    justify-content: center;
    font-weight: 500;
    
}