* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	color: #333;
	line-height: 1.6;
	margin: auto;
	padding: 10px;
}

header {	
	column-count: 1;
}

footer {
	text-align: left;
	margin-top: 20px;
	padding: 20px;
}
.info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	 column-count: 2;
	/*column-gap: 32px;
	column-rule: none;*/
	margin-left: 25px;
	margin-right: 25px; 
	/*max-Width: 1500px; */
	min-width: 460px; */
	grid-area: brand;
	grid-template-areas: "copy screenshot";
}

.cta {
	background-color: #dce0e6;
	color: white;
	display: inline-block;
	padding: 0px 10px; 
	border-radius: 14px;
}

.screenshot {
	grid-area: screenshot;
	
	width: 400px;
	height: auto;

	object-fit: cover;
}

.copy {
	grid-area: copy;
}

header {
	margin-top: 60px;
	display: flex;
	justify-content: left; /* Centers horizontally */
	align-items: left;     /* Centers vertically */
	text-align: left;      /* Centers text inside */
	flex-direction: row;  /* Stacks the image and text vertically */
}

header img {
	max-width: 100%;
	height: 100%;
}

header span {
	float: left;
	text-decoration: none;
	font-size: 40px;;
	font-weight: bold;
	margin-left: 6px;
	padding-bottom: 0;	
	color: black;
}



.info  .promotional {
	display: block;
	margin-top: 40px;
}

@media (max-width: 3500px) {
	/* The grid system goes here... */
	.info {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 25px;
		 column-count: 2;
		/*column-gap: 32px;
		column-rule: none;*/
		margin-left: 25px;
		margin-right: 25px; 
		max-Width: 3500px; 
		grid-area: brand;
		grid-template-areas: "copy screenshot";
	}

.screenshot footer {
	visibility: hidden;
}

.info p {
	font-size: 17px;
}


.info {
	font-size: 28px;
	font-weight: 500;
	color: gray;
}

.tagline {
	padding-bottom: 20px;
	font-size: 42px;
}

/* iPhone */
@media(max-width: 560px) {
	.info {
		grid-template-columns: 1fr;
		grid-template-areas: "copy" "screenshot";
		justify-items: center; 
		max-width: 560px;
  	 }
	   
	 .info h1 {
		 font-size: 44px;
	 }
	 
	 .info {
		 font-size: 18px;
		 font-weight: 500;
		 color: gray;
	 }
	 
	 .tagline {
		 padding-bottom: 20px;
		 font-size: 32px;
	 }
	 
	 .info header {
		 margin-top: 10px;
		 display: flex;
		 justify-content: center; /* Centers horizontally */
		 align-items: center;     /* Centers vertically */
		 text-align: center;      /* Centers text inside */
	 }
	 
	 .info  .screenshot footer {
		 visibility: visible;
		 align-items: center;
		 text-align: center;
	 }
	 
	 .info   footer {
		 visibility: hidden;
	 }
	 
	 .promotional {
		 margin-top: 0px;
		 text-align: center;
	 }
	 
	 .screenshot {
		 margin-top: -60px;
	 }
	 /* .copy {
		 padding-top: -60px;
		 visibility: visible;
		 text-align: center; 
	 } */
	 

	  
	 /* .info .screenshot {
		 margin: -100px;
	 } */
}



.featured-section {
	margin: 0 25px;
}

.appstore-footer {
	color: black;

    margin: auto;
    width: 50%;
    text-align: center;
}

.appstore-footer p {
	padding: 12px 0;
	font-size: 24px;
}

.appstore-footer .small-print {
	font-size: 11px;
	padding-top: 0px;
}

.small-text {
	font-size: 0.7em; /* Adjust size relative to surrounding text */
}

.small-print {
	font-size: 13px;
	text-decoration: none;	
}

.info .small-print {
	font-size: 13px;
	text-decoration: none;	
}





