html {-webkit-font-smoothing: antialiased}

body {
    background: transparent;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #FFF;
    font-size: 12px;
}

main {
    margin: auto;
    width: 100%;
    letter-spacing: 0;
    padding: 0;
    
}

h1 {
    font-family: Playfair Display, serif;
    text-align: center;
}

b {
    font-weight: 700;
}
  
p {
    text-align: center;
    padding: 0;
    margin: 0 auto 1em;
    line-height: 1.5em;
    font-size: 1.25em;
}
a {
    color: #FFF;
    font-weight: 700;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}

a:hover {
    color: #FFF;
    text-decoration: underline;
    
}

label {
    display: inline-block;
    width:34%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

label:before {
    content:"*";
    color: #c39;
    font-weight: normal;
}

input, 
select {
	color: #333;
    
    font-weight: 700;
}

input[type="text"]  {
	outline: 0;
	padding: 3px 1%;
	width: 60%;
	margin: 10px auto; 
}

select {
	width: 30%;
    margin: 10px 0;
}

input:focus,
select:focus {
    
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}

input[type="submit"] {
	padding:8px 10px;
	display:block;
	margin:18px auto;
	background-color: #32438b;
    color: #FFF;
	cursor: pointer;
    border:0;
    text-transform: uppercase;    
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    border: 1px solid #FFF;
    padding: .5em 1em;
}

input[type="submit"]:hover {
    background: rgb(170,137,87);
    color: #FFF;
    
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}