body{
	margin:0px;
	padding:0px;
	font-family:verdana;
	background-color:#123456;
}
.main
{
	
	color:#fff;
	width:900px;
	height:100px;
	background-color:Orange;
	opacity:80%;
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
.header h1
{
	margin-top:25px;
	color:#fff;
	font-size:50px;
}
.main select 
{

	margin-top:25px;
  color: #123456;
  padding: 10px;
  width: 350px;
  border: none;
  font-size: 20px;
 
  -webkit-appearance: button;
  appearance: button;
  outline: none;
}
.box::before {
  content: "\f13a";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 45px;
  
  pointer-events: none;
}

.box:hover::before {
  
  background-color:#000;
}

.box select option {
  padding: 30px;
}
.main input[type=submit]
{
	border:none;
	height:44px;
	background-color:RED;
	color:#fff;
	width:150px;
}
.footer
{
	width:100%;
	bottom:10px;
	text-align:center;
	position:fixed;
	color:#fff;
	
}