@charset "UTF-8";
/* CSS Document */

.parent {
	display: grid;
	grid-template-columns: (1fr);
	grid-template-rows: (7, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.device{
	grid-area: 2 / 1 / 3 / 2;
	width: 100vw;
	margin-top:0;
	height:620px!important;
	background-position: center;
}
.tagline{
	grid-area: 3 / 1 / 4 / 2;
}
.version{
	grid-area: 4 / 1 / 5 / 2;
}
.div5{
	grid-area: 5 / 1 / 6 / 2;
}
.div6{
	grid-area: 6 / 1 / 7 / 2;
	height: 75vh;
	background-position: center right -50px;
	background-size: 50%;
	
}
.footer{
	grid-area: 7 / 1 / 8 / 2;
	
}
.buttonContainer{
	width:80vw;
}

.logo{
	grid-area: 1 / 1 / 2 / 2;
	padding-top: 20vh;
	text-align: center;
	width: 100vw;
	padding-left:0;
}
.logo, .device, .tagline, .version, .div5, .div6, .nestedGrid, .footer, .nestedFooterGrid{
	/*border:1px solid blue;*/
}
