@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

html {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Lato, sans-serif;
	color: #54575a;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f3f8f7 49.91%,
		#fff9f5 94.19%
	);
}

/* layout */
.wrapper {
	position: relative;
	width: 1440px;
	height: 1379px;
	margin: auto;
	overflow-x: hidden;
}

/* shared absolute positioning */
.brand-img,
.title,
.text,
.app-store-btn,
.google-play-btn,
.main-image-container,
.profile-img,
.orders-img,
.home-img,
.cart-img,
.product-img,
.background-toggles {
	position: absolute;
}

/* title and text */
.title {
	width: 458px;
	height: 135px;
	left: 221px;
	top: 236px;
	font-weight: 500;
	font-size: 64px;
	line-height: 68px;
}

.text {
	width: 394px;
	height: 96px;
	left: 221px;
	top: 403px;
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
}

/* brand image */
.brand-img {
	width: 193px;
	height: 47.64px;
	left: 221px;
	top: 50.25px;
}

/* store buttons */
.app-store-btn,
.google-play-btn {
	top: 531px;
}

.app-store-btn {
	left: 221px;
}

.app-store-btn img {
	width: 138.44px;
	height: 46.28px;
}

.google-play-btn {
	left: 381.81px;
}

.google-play-btn img {
	width: 156.19px;
	height: 46.28px;
}

/* main image */
.main-image-container {
	left: 683.28px;
	top: 229.73px;
}

.main-image-container img {
	width: 535.72px;
	height: 309.27px;
}

/* images with same size and drop shadow */
.profile-img,
.orders-img,
.home-img,
.cart-img,
.product-img {
	filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.25));
}

.orders-img,
.home-img {
	height: 470px;
}

.cart-img,
.product-img {
	height: 222px;
}

/* individual image positions */
.profile-img {
	left: 737px;
	right: 479px;
	top: 686px;
	height: 444px;
}

.orders-img {
	left: 479px;
	right: 737px;
	top: 913px;
}

.home-img {
	left: 995px;
	right: 221px;
	top: 908px;
}

.cart-img {
	left: 221px;
	right: 995px;
	top: 1157px;
}

.product-img {
	left: 737px;
	right: 479px;
	top: 1157px;
}

/* bg toggles */
.background-toggles {
	right: 150px;
	top: 70px;
	display: flex;
}

.background-toggles > div {
	height: 25px;
	width: 25px;
	border-radius: 5px;
	margin-right: 10px;
	box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

/* bg colors */
.background-1 {
	background-color: #f2f2f2;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cacaca' fill-opacity='0.3' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.background-2 {
	background: #ada996; /* fallback for old browsers */
	background: -webkit-linear-gradient(
		to bottom,
		#eaeaea,
		#dbdbdb,
		#f2f2f2,
		#ada996
	); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
		to bottom,
		#eaeaea,
		#dbdbdb,
		#f2f2f2,
		#ada996
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.background-3 {
	background: #8e9eab; /* fallback for old browsers */
	background: -webkit-linear-gradient(
		to bottom,
		#eef2f3,
		#8e9eab
	); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
		to bottom,
		#eef2f3,
		#8e9eab
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
