
.header-primary {
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1rem;

	h1 {
		color: black;
		font-size: 2.5rem;
		font-weight: bold;
		margin-top: 2rem;
		margin-bottom: 0.5rem;
	}
	
	p {
		color: black;
		font-size: 1.25rem;
		font-weight: normal;
	}
	
	.logo {
		border: 6px solid #458EEC;
		border-radius: 64px;
	}
}

.header-primary nav {
	margin: 1rem 0;

	ul {
		list-style-type: none;
		justify-content: center;
		align-items: center;
		gap: 10px;
		
		li::after {
			content: '⋅';
			display: inline-block;
			font-size: 2rem;
			font-weight: bold;
			vertical-align: middle;
			margin-left: 10px;
			margin-bottom: 5px;
		}
		
		li:last-of-type::after {
			display: none;
		}
	}
	
	a {
		text-decoration: none;
		font-size: 1.25rem;
		color: #458EEC;
		
		&:hover {
			color: #384F80;
		}
	}
}

#features {
	width: 100%;
	margin: 0 auto;
	height: auto;
	max-width: var(--max-width);
	justify-content: center;
	align-items: center;
}

.feature {
	justify-content: space-around;
	align-items: center;
	flex-wrap: nowrap;
	padding: 60px 30px;
	gap: 10px;
	

	&:nth-of-type(even) {
		background-color: #ECEDF0;
		flex-direction: row-reverse;
		text-align: right;
	}
}

.feature h3 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature img {
	border-radius: 32px;
	box-shadow: 3px 3px 25px 6px #458EEC;
}

#download {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 60px 30px;
	align-items: center;
	text-align: center;

	h2 {
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 0.75rem;
	}

	p {
		font-size: 1.15rem;
		margin-bottom: 0.5rem;
	}

	.download-note {
		font-size: 1rem;
		color: #666;
	}
}

@media only screen and (max-width: 768px) {
	.feature.hstack {
		flex-direction: column;
		
		img {
			margin-top: 1.5rem;
		}
		
		&:nth-of-type(even) {
			flex-direction: column;
			text-align: center;
		}
	}
}