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

body{
  background: url('bg.jpg') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  height: 100%
}

#anuncio{
  width: 450px;
  float: left;
  margin: 40px 0 0 100px;
}

#anuncio .logo{
  padding-bottom: 20px;
}

#anuncio h1{
  font-family: 'Arial', serif;
  text-transform: uppercase;
  font-size: 40px;
  color: #ffffff;
  font-weight: normal;
  padding-bottom: 20px;
}

#anuncio p{
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 10px;
}

#anuncio input{
  padding-top: 20px;
  margin-top: 20px;
}

  
 @media all and (max-width: 1014px){
	#anuncio{
		width: 100%;
		margin: 10% 0 0 0;
		padding: 0 5%;
		text-align: center;
	} 
	
	#anuncio p{
		text-align: left;
	}
 }
