*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "arial";
	outline: none;
}

body{
	background-color: #F8F9F9;
}

input{
	padding: 6px;
	transition: 500ms ease all;
}

input[type="button"]{
	padding: 8px;
	font-weight: bold;
	color: #3498DB;
	cursor: pointer;
}

label{
	font-weight: bold;
	color: #3498DB;
}

input[type="button"]:hover{
	border: 2px solid #154360;
	color: #154360;
}

input[type="text"]{
	margin-top: 10px;
}

input::placeholder, input[type="text"]{
	color: rgb(52, 152, 219);
	letter-spacing: 1px;
	font-size: 14px;
}input[type="text"]{
	color: #154360;
}

input[type="text"]:hover{
	border: 2px solid #154360;
}

.Caja{
	border: 2px solid #3498DB;
	background-color: #AED6F1;
	border-radius: 4px;
}

.cont-secction{
	width: 100%;
	height: 100vh;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.Seccion{
	width: 80%;
	margin: 0 auto;
	padding: 20px;
	box-shadow: 1px 1px 10px rgb(0,0,0,.3);
	border-radius: 3px;
	background-color: #fff;
}

	.SubSeccion{
		width: 100%;
		overflow: hidden;
	}

		.IngresarDatos{
			width: 60%;
			margin: 20px auto;
			text-align: center;
			padding: 30px;
			background-color: #D6EAF8;
			border-radius: 3px;
			margin-left: 3%;
			float: left;
		}

			.IngresarDatos > div{
				display: block;
				padding: 10px;
				padding-top: 10px;
				text-align: center;
			}

		.Seccion > h2{
			text-align: center;
			font-size: 30px;
			font-weight: bold;
			text-shadow: 1px 1px 10px rgb(0,0,0,.3);
			margin-bottom: 10px;
		}

		.ContTabla{
			width: 30%;
			height: 300px;
			margin: 20px auto;
			padding: 10px;
			background-color: #ccc;
			max-height: 300px;
			overflow: auto;
			border: 1px solid #888;
			border-radius: 3px;
			float: left;
			margin-left: 30px;
		}

			#IdTabla{
				display: block;
				text-align: center;
				margin: 20px;
			}

@media screen and (max-width: 800px){
	.IngresarDatos, .Articulo, .ContTabla{
		float: none;
		width: 100%;
		margin: 0;
	}

	.ContTabla{
		margin-top: 30px;
	}
}

@media screen and (max-width: 500px){

	.Seccion{
		margin-top: 90px;
	}

	label, input[type="text"]{
		display: block;
		width: 100%;
	}

	input[type="text"]{
		width: 90%;
		margin: 10px auto;
	}

}