* {box-sizing: border-box;}

#Home {
	padding-top: 25px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

#Card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 400px;
	height: 400px;
	padding-top: 15px;
	background-color: var(--Cards);
	border-radius: 3px;
}

#Image_Container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 375px;
	height: 210px;
	min-height: 210px;
}

#Image {
	max-width: 375px;
	height: auto;
}

#Card_Body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 375px;
	padding-top: 10px;
	gap: 10px;
}

#Card_Body:hover {
	cursor: default;
}

#Card_Title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#Card_Link {
    font-family: 'Source Sans Pro', sans-serif;
	background-color: RGB(125,0,0);
	color: RGB(255,255,255);
	text-decoration: none;
}

#Card_Link:hover {
	background-color: RGB(200,0,0);
}

#Icon {
	font-size: 18px;
	padding: 0;
	margin: 0;
}

#Title {
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	color: RGB(255,255,255);
	padding: 0;
	margin: 0;
}

#Card_Text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#Text {
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	text-align: center;
	color: RGB(255,255,255);
}

#Coming_Soon {
    font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 850;
	text-align: center;
	color: RGB(255,255,255);
	margin: 0;
}

/*-----LinkSyncify-----*/

#Card_LinkSyncify {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 400px;
	height: 400px;
	padding-top: 15px;
	background-image: linear-gradient(to bottom, RGB(100,255,100), RGB(0,0,80));
	border-radius: 3px;
}

#Card_Link_LinkSyncify {
    font-family: 'Source Sans Pro', sans-serif;
	background-color: RGB(125,0,0);
	color: RGB(255,255,255);
	text-decoration: none;
}

#Card_Link_LinkSyncify:hover {
	background-color: RGB(200,0,0);
}

#Title_LinkSyncify {
    font-family: 'Montserrat', sans-serif;
	font-weight: 850;
	font-size: 18px;
	color: RGB(255,255,255);
	padding: 0;
	margin: 0;
}

#Text_LinkSyncify {
    font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	text-align: center;
	color: RGB(255,255,255);
}