@charset "utf-8";
* {
	margin: 0;
    padding: 0;
    border: 0;
}
main {
	background: linear-gradient(to bottom, rgba(14,14,14,1) 0%,rgba(0,0,0,1) 51%,rgba(66,66,66,1) 55%,rgba(196,196,196,1) 58%,rgba(211,211,211,1) 80%,rgba(225,224,224,1) 100%);
	height : 100vh;
}
.logo {
	height: 50vh;
	padding-top: 5vh;
}
.go {
	display: block;
	margin: 0 auto -7vh;
	max-height: 8vh;
	width: auto;
}
.car {
  background-image: url('./esi-go-car-image.png');
  min-height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.app {
	max-width: 712px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 50vh;
    margin-top: -5vh;
}
.app img {
	max-width: 262px;
	height: auto;
	margin:  50px 25px;;
  }
@media (max-width: 768px) {
	.car {
		background-size: cover;
	}
	.app {
		flex-direction: column;
	}
	.app img {
		margin:  20px 5px;;
	  }
}
@media (max-height: 520px) {
	.car {
		background-size: auto 75vh;
	}
	.app {
		flex-direction: row;
	}
	.app img {
		margin:  5px 10px;;
	  }
}
