* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #F5F6FA;
	font-family: 'Montserrat', sans-serif;
}

header {
	width: 100%;
	display: flex;
	padding: 20px 0;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	font-size: 24px;
	line-height: 24px;
	font-weight: 600;
	color: #393A58;
	display: inline-block;
}

.contenedor {
	width: 100%;
	max-width: 95%;
	margin: auto;
}

table {
	width: 100%;
	background: #fff;
	border-collapse: collapse;
	text-align: center;
	margin-bottom: 80px;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
}

td, th {
	border-bottom:1px solid #E9E9E9;
	padding: 20px;
}

th {
	color:#393A58;
	font-size: 16px;
}

td {
	font-size: 14px;
}

h2{
    font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	color: #F54927;
	display: inline-block;
	text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}