* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	color: white;
	text-decoration: none;
  }

body {
	background-color: #222;
}

.container {
	width: 95%;		
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}

header {
	width: 100%;
	height: 6rem;
	margin: auto;
	background: #222;
	position: sticky;
	z-index: 100;
	display: flex;
	align-items: center;
	box-shadow: 2px 0px 5px 0px Black;
}

.logo {
	font-family: "Oswald", sans-serif;
	letter-spacing: 0.3px;
	font-size: 1.4rem;
	font-weight: 700;	
	display: flex;
	align-items: center;
	text-shadow: 3px 3px 3px black;
}

header label {
	display: none;
	font-size: 40px;
	color: white;	
	float: right;	
}

header label:hover {
	cursor: pointer;
}

#btn-menu {
	display: none;
}

#btn-menu:checked ~ nav {
	transform: translateX(0%);
}

nav  {
	width: auto;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	transition: all 1s;
	transform: none;
}

nav a {	
    font-family: "Manrope", sans-serif;
	font-size: 1rem;
    padding-left: 50px;
	font-weight: 500;
}

nav a:hover, .active {
	color: #D86437;
	transition: 0.5s;	
}

main {	
	width: 100%;
	height: calc(100dvh - 6rem); 
    display: flex;
	align-items: center;
}

main .container h1 {
	margin: auto;
	font-family: "Oswald", sans-serif;
    font-size: 30px;
	text-align: center;	
	color: white;
    font-weight: 800;
	text-shadow: 9px 5px 9px black; 
	letter-spacing: 1px;
}

table {
	width: 100%;
	max-width: 1200px;
	border: 1px solid white;
	margin: 30px auto;
	color: white;
	text-align: center;
	text-shadow: 3px 2px 3px black;
	border-collapse: collapse;
}

table th {
	background: #D86437;
	font-family: "Oswald", sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
	border: 1px solid white;
	padding: 12px 8px;
	min-width: 120px;
}

table td {
	border: 1px solid white;
	padding: 10px 8px;
	min-width: 120px;
}

table tr {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	line-height: 1.5;
	display: table-row;
}

.totales {
	background: #D86437;
	font-family: "Oswald", sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
}








/***Aquí inician las Medias queries***/

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
	

	
	header .container label {
		display: block;
		color: white;
	}

	nav {
		background-color: #222;
		width: 45%;
		height: calc(100dvh - 6rem); 
		top: 100%;
		left: 0;
		flex-direction: column;
		position: absolute;
		transform: translateX(-100%);
		text-align: center;
		align-content: center;
		align-items: center;
		display: flex;
		justify-content: center;
		box-shadow: 2px 0px 2px Black;
		z-index: 999;
		opacity: 0.9;
	}

	nav a {
		color: white;
		padding: 1.5rem;
	}

	nav a:hover {
		color: #D86437;
	}

	#btn-menu:checked + label i::before {
		content: '\eb97';
	}
	
	main .container h1 {
		font-size: 28px;
	}
	
	table {
		margin: 20px auto;
		font-size: 16px;
	}
	
	table th {
		font-size: 20px;
		padding: 10px 6px;
	}
	
	table td {
		padding: 8px 6px;
	}
	
	table tr {
		font-size: 16px;
	}

	
	main .container {
		padding: 0 10px;
	}
	
	main .container h1 {
		font-size: 26px;
		margin-bottom: 20px;
	}
	
	table {
		margin: 15px auto;
		width: 100%;
		overflow-x: auto;
		font-size: 14px;
	}
	
	table th {
		font-size: 16px;
		padding: 8px 4px;
		min-width: 80px;
	}
	
	table td {
		padding: 6px 4px;
		min-width: 80px;
		font-size: 14px;
	}
	
	table tr {
		font-size: 14px;
	}
}
