
header {
	background-color: transparent;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	font-family: 'Century Gothic';
}

.container-fluid {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0;
}

.top-section {
	background-color: #F3F2F1;
	flex: 58%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo {
	margin-top: 3vh;
	max-width: 45%;
	height: auto;
	padding: 25px;
}

.subtitle {
	color: #B1AAA0;
	font-size: 1.8vw;
	font-weight: 500;
}

.bottom-section {
	flex: 42%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
}

.system {
	display: flex;
	flex-direction: row;
	color: black;
	align-items: center;
	justify-content: center;
	margin-top: 8.3vh;
}
	.system p {
		padding: 0 8px 0 8px;
		font-size: 1.35vw;
		font-weight: 500;
		margin-top: auto;
		margin-bottom: auto;
	}

.winIcon {
	max-width: 8%;
	height: auto;
}


.downloadBtn {
	border-radius: 8px;
	background: #C43E1C;
	color: white;
	margin-top: 2vh;
	width: 15%;
	height: 18%;
	position: relative;
	display: inline-block;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

	.downloadBtn:hover {
		background: #E36041;
	}

	.downloadBtn a {
		color: white !important;
		text-decoration: none;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}

	.downloadBtn img {
		margin-right: 0.7vw;
		max-width: 3.2vh;
	}

	.downloadBtn p {
		margin-top: auto;
		margin-bottom: auto;
		font-size: 3vh;
	}

#downloadLink {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.version {
	margin-top: 3px;
	color: #B1AAA0;
	font-size: 2vh;
}

@media (max-width: 1024px) {
	.downloadBtn img {
		max-width: 2vh;
		margin-right: 0.7vw;
	}

	.downloadBtn p {
		font-size: 2vh;
	}

	.version {
		font-size: 1.8vh;
	}

	.downloadBtn {
		height: 5vh;
	}
}


@media (max-width: 768px) {
	.downloadBtn img {
		max-width: 1.7vh;
		margin-right: 0.5vw;
	}

	.downloadBtn p {
		font-size: 1.7vh;
	}

	.version {
		font-size: 1.5vh;
	}

	.downloadBtn {
		height: 5vh;
	}
}

@media (max-width: 480px) {
	.downloadBtn img {
		max-width: 1vh;
	}

	.downloadBtn p {
		font-size: 1vh;
	}

	.version {
		font-size: 1vh;
	}

	.downloadBtn {
		margin-top: 1vh;
		height: 3vh;
	}
}