I have set a custom font and background for the initial view of the dropdown list (Select a choice). The font-size is 20 pixels and looks great with the custom
In chrome try adding background: white; to the class Select. By setting the background to white Chrome also followed the rest of my specifications such as height and font.
.yourselectclass select {
background: white;
font-size: 16px;
margin-left: 5px;
font-family: 'Cabin', sans-serif;
height: 30px;
width: 88px;
}