* {
  margin: 0;
  padding: 0;
}

@media (prefers-color-scheme: light) {
  :root {
		--backgroundColor: #F7F7F7;
		--textColor:  #323232;
		--navBorderColor: rgba(0, 0, 0, 0.1);
		--cardBackgroundColor: #EFEFEF;
	}
}

@media (prefers-color-scheme: dark) {
  :root {
		--backgroundColor: #131313;
		--textColor:  #E5E5E5;
		--navBorderColor: rgba(255, 255, 255, 0.1);
		--cardBackgroundColor: #1E1E1E;
	}
}

html {
	font-family: -apple-system, "Helvetica Neue", sans-serif;
	background-color: var(--backgroundColor);
	color: var(--textColor);
	font-style: normal;
	font-size: 22px;
}

#navbar {
	display: flex;
	padding-left: 24px;
	padding-right: 24px;
	position: sticky;
  top: 0;
  background-color: var(--backgroundColor);
  border-bottom: 1px solid var(--navBorderColor);
}

#navbar:first-child {
	padding-top: 24px;
	padding-bottom: 24px;
	justify-content: space-between;
}

#navbar > div {
	display: flex;
	gap: 24px;
	width: auto;
}

main {
	max-width: 800px;
	margin: auto;
	padding-left: 24px;
	padding-right: 24px;
}

h1 {
	font-size: 4.2rem;
	font-weight: bold;
	padding-bottom: 8px;
}

@media (max-width: 600px) {
	h1 {
		font-size: 3.7em;
	}
}

@media (max-width: 425px) {
	h1 {
		font-size: 3em;
	}
}

p {
	font-weight: 300;
	line-height: 1.4rem;
}

a {
	text-decoration: none;
	color: #999999;
}

a:hover {
	color: #0088FF;
}

#apps-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 16px;
}

.app-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background-color: var(--cardBackgroundColor);
	border-radius: 16px;
	transition: transform 0.2s ease;
}

.app-card:hover {
	transform: scale(1.02);
}

.app-card img {
	width: 80px;
	height: 80px;
	border-radius: 18px;
	flex-shrink: 0;
}

.app-card-info h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--textColor);
}

.app-card-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}

.app-status {
	font-size: 0.55rem;
	font-weight: 500;
	padding: 3px 10px;
	border-radius: 999px;
	background-color: #0088FF;
	color: #FFFFFF;
	white-space: nowrap;
}

.app-card-info p {
	font-size: 0.85rem;
	color: #999999;
}
