/* Color Palete
#558C89 - Dark teal
#74AFAD - Light teal
#D9853B - Orange
#555555 - Gray
#ECECEA - Light Gray
*/

body {
  background-color: #ECECEA;
  text-align: center;
  color: #555555;
  font-family: BlinkMacSystemFont;
}

h1 {
  color: #558C89;
}

span {
  color: #D9853B;
}

select {
   -webkit-appearance: button;
   -webkit-border-radius: 2px;
   -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   -webkit-user-select: none;
   background-image: url(http://i62.tinypic.com/15xvbd5.png), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
   background-position: 97% center;
   background-repeat: no-repeat;
   border: 1px solid #AAA;
   color: #555555;
   font-size: inherit;
   margin: 20px;
   overflow: hidden;
   padding: 5px 10px;
   text-overflow: ellipsis;
   white-space: nowrap;
   width: 300px;
}

