body{
    background: #f2f2f2;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container{
    width: 500px;
    background: #e30613;
    display: flex;
    position: relative;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.2);
    border: 1px solid white;
}
.left_side{
    width: 60%;
    padding-top: 30px;
    color: white;
    position: relative;
    
}
.right_side{
    width: 40%;
    height: 100%;
    background: white;
    background-image: url('../imagenes/fondo.jpg');
    background-repeat: no-repeat
}
.titulo{
    margin: 0;
    text-align: center;
	font-size: 55px;
}
.anno{
    position: absolute;
    width: 75%;
    background: black;
    right: 0;
    top: 120px;
    color: white;
    padding: 10px;
    padding-left: 15px;
    font-size: 30px;
    font-weight: bold;
}
.montserrat {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: bold;
font-style: normal;
}
.logo{
text-align: center;
margin-top: 500px;
}
.productos{
font-size: 12px;
position: absolute;
bottom: 0;
width: 100%;
box-sizing: border-box;
}
.descarga{
    position: absolute;
    font-size: 15px;
    color: black;
    right: 0;
    top: 450px;
    background: white;
    width: 70%;
    padding: 10px;
}

a{
    text-decoration: none;
    color: black;
}

a:hover{
    color: #e30613;
}

@media (max-width: 500px){
    .container{
        width: 350px;
    }
	.productos{
		font-size:8px;
	}
	.anno{
		font-size:20px;
	}
	.descarga{
		font-size:12px;
	}
	.titulo{
		font-size: 40px;
	}
	
	.lg_image{
		width: 70%;
	}


}