body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
		"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: rgba(245, 245, 247, 1);
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 300px;
	background-color: #fff;
	padding: 20px;
	padding-top: 50px;
	box-shadow: 5px 0 10px rgba(0, 0, 0, 0.03);
}

.sidebarItem {
	box-sizing: border-box;
	width: 100%;
	border-radius: 6px;
	padding: 15px;
}

p.sidebarTitle {
	font-size: 24px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
	margin-top: 25px;
	padding-left: 15px;
}

.mainContent {
	margin-left: 320px;
	padding-top: 50px;
}

div.content {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
}

img.articleHeroImage {
	width: 100%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	margin-bottom: 25px;
}

div.gameryIconSidebar {
	width: 200px;
	height: 200px;
	background-image: url("../images/AppIcon.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

div.gameryIconArticle {
	width: 80px;
	height: 80px;
	background-image: url("../images/AppIcon.png");
	background-repeat: no-repeat;
	background-size: cover;
}

div.articleFooterBox {
	padding: 30px;
	background: white;
	border-radius: 30px;
	margin-top: 30px;
}

span.hero-largeTitle-gradient {
	background-image: linear-gradient(135deg, #8011ff, #feb64a);
	background-size: 100%;
	background-repeat: repeat;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-box-decoration-break: clone;
}

a {
	text-decoration: none;
	color: #007aff;
}

a:hover {
	text-decoration: underline;
}

a#footer {
	margin-left: 10px;
	margin-right: 10px;
}

div.card {
	padding: 40px;
	background: white;
	margin: 0;
	border-radius: 30px;
	margin-bottom: 20px;
}

img.heroImage {
	width: 100%;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}

img.articlePreviewImage {
	width: 320px;
	border-radius: 15px;
	margin-right: 30px;
}

div.card#article {
	display: flex;
	align-items: center;
	justify-content: center;
}

h2 {
	font-size: 52px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	margin-bottom: 10px;
}

h2#center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

h3 {
	font-size: 32px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	margin-bottom: 10px;
}

h5 {
	font-size: 26px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #161e2e;
	margin-bottom: 10px;
}

h6 {
	font-size: 14px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #007aff;
	margin-bottom: 10px;
	text-transform: uppercase;
}

p.cardText {
	font-size: 22px;
	font-weight: 500;
	padding: 0;
	margin: 0;
	color: gray;
	line-height: 26px;
	line-height: 27px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	box-sizing: border-box;
	width: 100%;
	padding: 30px;
	text-align: center;
	line-height: 44px;
}

div.topBar {
	position: fixed;
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

div.topBarContent {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-left: 30px;
	padding-right: 30px;
}

div.topBarLeft {
	float: left;
	margin-top: 14px;
}

div.topBarRight {
	float: right;
	margin-top: 20px;
}

li {
	font-size: 17px;
	font-weight: 400;
	padding: 0;
	margin: 0;
	line-height: 25px;
	color: gray;
}

span.articleInread {
	font-style: italic;
	color: gray;
}

p.contentText {
	font-size: 17px;
	font-weight: 400;
	padding: 0;
	margin: 0;
	line-height: 25px;
	color: gray;
}

p.articleText {
	font-size: 19px;
	font-weight: 400;
	padding: 0;
	margin: 0;
	line-height: 25px;
}

a.downloadButton {
	background-color: #007aff;
	border-radius: 40px;
	padding: 8px;
	padding-left: 14px;
	padding-right: 14px;
	color: white;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

a.downloadButton:hover {
	background-color: #278eff;
	text-decoration: none;
}

a.downloadButton:active {
	background-color: #0e6fd9;
	text-decoration: none;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #1c1c1c;
		color: white;
	}

	div.topBar {
		background-color: rgba(0, 0, 0, 0.85);
	}

	div.card {
		background: rgb(34, 34, 34);
	}

	div.articleFooterBox {
		background: rgb(34, 34, 34);
	}

	h1 {
		color: #ffffff;
	}

	h3 {
		color: rgb(246, 246, 246);
	}

	h2 {
		color: #ffffff;
	}

	h5 {
		color: #ffffff;
	}

	.sidebar {
		background-color: rgb(34, 34, 34);
		color: #fff;
	}
}

@media only screen and (max-width: 1100px) {
	div.card#article {
		flex-direction: column;
		/* Changed flex direction to column */
		align-items: left;
		justify-content: left;
		padding: 0;
		margin: 0;
		margin-bottom: 20px;
		padding: 30px;
	}

	img.articlePreviewImage {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 15px;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.sidebar {
		box-sizing: border-box;
		/* Ensure padding is included in width */
		position: relative;
		width: 100%;
		padding: 20px;
		margin: 0;
		border-radius: 30px;
		margin-top: 50px;
		box-shadow: none;
	}

	.mainContent {
		margin-left: 0;
	}

	h2 {
		font-size: 36px;
	}

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

	div.card {
		padding: 20px;
	}

	div.content {
		padding: 20px;
	}
}