/*header {
    align-items: center;
    background-color: #bbb;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }
*/

header {
    background-color: #bbb;
    width: 100%;
    text-align: center;
    border: 1px solid black;
    display: flex;
    flex-wrap: wrap;

  }
.logo{
    width: 80px;
    padding: 1em;
}
nav{
    margin: 0;
    width: 100%;
    height: 50px;
    background-color: beige;
    text-align: center;
    
}
.nav{
    padding: 1em;
}

.container{
    background-color: #bbb;
    display: flex;
    flex-flow: row wrap;
    height: 500px;
    width: 70%;
}

.imagendiv{
    width: 190px;
}
.nombreempresa{
    margin-left: 570px;
    margin-top: 40px;
}

.contenedorhijo{
padding: 4em;

}
aside{
    width: 30%;
    text-align:start;
}
.asidetext{
    margin-top: 200px;
    margin-left: 20px;
}
footer{
    width: 100%;
    border: 1px solid black;

}
.footertext{
    text-align: center;
}


/*Formulario*/

form{
	width:300px;
	padding:16px;
	border-radius:10px;
	margin:auto;
	background-color:rgb(191, 204, 142);
}

form label{
	width:82px;
	font-weight:600;
	display:inline-block;
	color: rgb(0, 0, 0);
}

form input[type="text"],
form input[type="email"]{
	width:180px;
	padding:3px 10px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;
	margin:8px 0;
	display:inline-block;
}

form input[type="submit"]{
	width:100%;
	padding:8px 16px;
	border:1px solid #000;
	text-transform:uppercase;
	font-weight: 600;
	border-radius:5px;
	color:rgb(204, 120, 120);
	background-color:#000;
} 

/*Utilizando Hover para el ejercicio F*/

form input[type="submit"]:hover{
	cursor:pointer;
	color:rgb(255, 229, 85)
}

textarea{
	width:100%;
	height:100px;
	border:1px solid #f6f6f6;
	border-radius:3px;
	background-color:#f6f6f6;			
	margin:8px 0;
	resize:none;
	display:block;
}

.columnas{
    padding: 1em;
	width: 95%;
	column-count: 3;
  	column-gap: 75px;
	text-align: justify;
	margin: auto;
}

/*Pseudoclases Pregunta F*/

.enlace:active {
	background: #000;
}

.enlace:visited {
	color: #b1b1b1;
}

.enlace:hover {
	color: orange;
}