/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
	box-sizing: border-box;
}

body{
	background: url(../img/bg.jpg) 0 0 no-repeat;
	background-size: cover;
}

header{
	background: #de0000;
	width: 100%;
	overflow: hidden;
	padding: 10px 15px;
	position: relative;
	top: 0;
	left: 0;
}

div.container{
	width: 600px;
	margin: 0 auto;
}

img.texto{
	display: block;
	margin: 50px auto 10px auto;
	text-align: center;
	width: 70%;
}

a.boton{
    display: table;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
}

img.tiendasapp{
	display: block;
	margin: 45px auto;
}

section.tiendadescargas{
	display: block;
	margin: 30px auto 0 auto;
	text-align: center;
}

section.tiendadescargas a img{
	border-radius: 7px;
}

@media (max-width: 700px){
	body{
		background: url(../img/bgmobile.jpg) 0 0 no-repeat;
		background-size: cover;
		width: 100%;
	}
	div.container{
		width: 100%;
	}
	img.texto{
		width: 70%;
		margin: 60px auto 10px auto;
		display: block;
		text-align: center;
	}
	a.boton img{
		width: 70%;
	}
}