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

body {
	background-color: #222;
}

.no-picks {
    text-align: center;
	padding: 20px;
	font-size: 18px;
	color: #888;
	font-family: "Oswald", sans-serif;
	color: white;
}

.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;
}

.container-pick {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	max-width: 280px;
	min-height: 200px;
	box-shadow: 0px 2px 6px black;
	text-align: center;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin: 10px;
}

.container-pick:hover {
	transform: translateY(-5px);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}


/*.container-pick {
	width: 230px;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	box-shadow: 0px 2px 6px black;
}*/

.container-pick h1{
	background-color: #D86437;
	font-family: "Oswald", sans-serif;
}

.container-pick h1,h2, p {
	padding: 10px 15px;
}

.container-pick h2 {
	font-family: "Oswald", sans-serif;    
}

.container-pick p {
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.container-pick p:last-child {
	padding-bottom: 18px;
}

.picks-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	padding: 5px 10px;
	justify-items: center;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}





/***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';
	}
	
	.container-pick {
		max-width: 300px;
	}
	
	.picks-list {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.8rem;
		padding: 1.5rem;
	}
	
	.container-pick h1 {
		font-size: 18px;
		padding: 10px 15px;
	}
	
	.container-pick h2 {
		font-size: 16px;
		padding: 8px 15px;
	}
	
	.container-pick p {
		font-size: 14px;
		padding: 8px 15px;
	}
	
	.container-pick p:last-child {
		padding-bottom: 20px;
	}
}
