@charset "UTF-8";

body {
	margin: 0;
}

.main_wrapper {
	width: 100vw;
	height: 100vh;
    position: relative;
    background: #ce2045;
}

.main_module {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.contenido_centrado {
	width: 40%;
	height: 40%;
	position: absolute;
	top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    background-image: url('../ofertaya.png');
    background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* Media Query para pantallas grandes */
@media screen and (min-width: 961px) and (max-width: 1280px) {
	.contenido_centrado {
		width: 60%;
		height: 60%;
	}
}

/* Media Query para pantallas medianas */
@media screen and (min-width: 641px) and (max-width: 960px) {
	.contenido_centrado {
		width: 70%;
		height: 70%;
	}
}

/* Media Query para pantallas chicas */
@media screen and (max-width: 640px) {
	.contenido_centrado {
		width: 80%;
		height: 80%;
	}
}