
body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-between;
	grid-template-columns: 70vh 30vh;
	box-sizing: border-box;
	border: 0;
	padding: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: none;
	height: 100vh;
	background: linear-gradient(90deg,rgb(250,244,241) 70%,rgb(255,255,255) 70%);
	font-family: 'Fraunces',serif;
	color: #2B161B;
}

#contenedor {
	display: flex;
	flex-direction: row;
	gap: 50px;
	box-sizing: border-box;
	align-items: center;
	margin-top: -5%;
	height: calc(100% + 100%);
}

#contenedor-1 {
	display: grid;
	box-sizing: border-box;
	gap: 10px;
	width: 90%;
	margin-left: 10%;
	height: 70vh;
}

.separator {

    width: 48px;
    border-top-width: 4px;
    border-top-color: #EF4D48;
    border-top-style: solid;
}	

.titulo {
	font-size: 65px;
	font-weight: 600;
	margin-bottom: 0;
}

.descripcion {
    font-family: 'Montserrat',sans-serif;
	font-size: 20px;
	line-height: 30px;
}

button {
	background: #EF4D48;
	cursor: pointer;
	border: none;
	color: white;
	border-radius: 5px;
	font-size: 1em;
	width: 200px;
	font-family: 'Montserrat',sans-serif;
}

.botonshopnow {
	width: 300px;
	height: 50px;
}

#contenedor-2 {
	display: grid;
	gap: 50px;
	align-content: space-between;
	justify-items: center;
	box-sizing: border-box;
	text-align: center;
	margin-right: 5%;
	width: 90%;
	margin-top: 10%;
	padding-bottom: 5%;
}

.logo {
	max-height: 250px;
	width: auto;
}

section img {
	width: 50%;
	height: auto;
}

.logoescrow {
	max-width: 500px;
}

.frasegancho{
	font-size: 2em;
}

section a img {
	width: 100%;
	min-width: 250px;
	height: auto;
}

.precio{
	margin: 0;
	font-size: 2em;
}

.texto {
	margin: 0;
	font-family: 'Montserrat',sans-serif;
}

#footer {
	display: grid;
	grid-template-columns: 50% 50%;
	align-content: center;
	justify-items: center;
	box-sizing: border-box;
	background-color: #F7F3F5;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 200px;
    font-family: 'Montserrat',sans-serif;
}

footer p {
	font-size: 12px;
	font-weight: 5px;

}

@media screen and (max-width: 768px) and (min-width: 100px) {
	body {
		display: flex;
		width: 90%;
		min-width: none;
		margin-left: 5%;
		margin-right: 5%;
	}

	#contenedor {
		flex-direction: column;
	}

	#contenedor-1 {
		display: flex;
		flex-direction: column;
		margin: 0;
		justify-items: center;
		align-items: center;
		justify-content: space-around;
		text-align: center;
		margin-top: 100px;
		margin-left: 5%;
		margin-bottom: 5%;
		width: 80%;
	}

	.titulo {
		margin-top: 0;
	}

	button {
		width: 60vh;
		min-width: 80%;
	}

	#contenedor-2 {
		display: flex;
		flex-direction: column;
		gap: 50px;
		justify-items: center;
		justify-content: space-around;
		align-items: center;
		text-align: center;
		margin: 0;
		margin-top: 0;
		margin-bottom: 50px;
		margin-left: 5%;
		margin-right: 5%;
		width: 90%;
	}
	#footer {
		display: flex;
		gap: 20px;
		flex-direction: column;
		text-align: center;
		width: 100%;
	}
}	

@media screen and (min-width: 1600px) {
	.titulo {
		font-size: 80px;
	}
	.descripcion {
		font-size: 26px;
	}	
	.botonshopnow {
		font-size: 28px;
	}

	#contenedor-2 {
		font-size: 28px;
	}
	
	#contenedor-2 .texto {
		font-size: 16px
	}

	#footer {
		height: 200px;
		font-size: 28px;
	}


}


