section {
    background-image: url("../img/contacto.jpg");
    background-size: 100vw 100vh;
    background-attachment: fixed;
    width: 100%;
    align-items: center;
    display: flex;
}
section div{
    float: left;
    width: 450px;
	margin: auto;
	background: rgba(0,0,0,0.4);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 50px;
    margin-bottom: 10px;
	border-radius: 7px;
    margin-left: 10px;
}

section h1{
    text-align: center;
    font:bold;
    font-size: 30px;
    padding-bottom: 0px;
    color: white;
}

section p{
    text-align: center;
    font-size: 15px;
    padding-bottom: 0px;
    color: white;
}

form
{
	float: left;
    width: 450px;
	margin: auto;
	background: rgba(0,0,0,0.4);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 50px;
    margin-bottom: 10px;
	border-radius: 7px;
}

h6
{
	color: #fff;
	text-align: center;
	margin: 0;
	font-size: 40px;
	margin-bottom: 7px;
    font-size: 10;
}

input, textarea
{
	width: 100%;
	margin-bottom: 5px;
	padding: 3px;
	box-sizing: border-box;
	font-size: 17px;
	border: none;
    font-size: 10;
}

textarea
{
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;
}

#boton 
{
	background: #31384A;
	color: #fff;
	padding: 20px;
}

#boton:hover
{
	cursor:pointer;
}

@media(max-width: 480px)
{ 
    form
	{
		width: 100%;
	}
}

@media(min-width:1024px)
{    
    .Contenedor
    {
        width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
    
    section
    {
        width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
    
}