html{
	min-height:100%;
	overflow-y: scroll;
}

body {
	font-family: 'Segoe UI', sans-serif;

	min-height: 100vh;
    margin: 0px;
    padding: 0px;
	position: relative;

	background: rgb(15,25,41);
	background: linear-gradient(180deg, rgba(15,25,41,1) 0%, rgba(8,10,24,1) 100%);
}

#net
{
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 30%;
}

.logo
{
	background-image:url(images/logo.png);
	background-repeat:no-repeat;
	background-size: 239px 74px;
	width:239px;
	height:74px;

	float:left;
}

.main {
	position: relative;
	top:0;
    left:50%;
    transform:translate(-50%,0);

	width:920px;
	min-height: 100%;
	text-align:center;
	padding-top:20px;
}

.stretch 
{
	min-height: 100vh;
}

.header
{
	position: relative;
}

.menuContainer
{
	padding-left: 30px;
	padding-top: 10px;
	display: flex;
	align-items: center;
}

.menuItem
{
	margin-left: 30px;
	color: white;
	font-size: 14px;
	text-decoration: none;
}

.menuItem:hover
{
	cursor: pointer;
	text-decoration: underline;
}

.content
{
	position: relative;
	width: 100%;
	display: flex;
}

.column 
{
	flex: 1;
}

.carousel
{
	position: relative;
	flex: 30%;
	height: 580px;
}

.bigText 
{
	font-size: 44px;
	padding-top: 120px;
	color: white;
	font-weight: 100;
	text-align: left;
}

.image
{
	background-image:url(images/image.png);
	background-repeat:no-repeat;
	background-size: 565px 306px;
	width: 565px;
	height: 306px;

	margin-top: 100px;

	-webkit-box-shadow: 0px 9px 31px 5px rgba(0,0,0,0.67); 
	box-shadow: 0px 9px 31px 5px rgba(0,0,0,0.67);
}

.buttonContainer
{
	display: flex;
	margin-top: 10px;
}

.button
{
	border-radius: 6px;
	width: 120px;
	font-size: 14px;
	text-decoration: none;
}

.button:hover
{
	cursor:pointer;
}

.mainButton
{
	height: 32px;
	line-height: 32px;

	background-color: white;
	color: black;

	box-shadow: 0px 2px 10px 0px rgba(255,255,255,0.0);
-webkit-box-shadow: 0px 2px 10px 0px rgba(255,255,255,0.0);	
	transition: box-shadow 0.3s ease-in-out;
}

.mainButton:hover
{
	box-shadow: 0px 2px 10px 0px rgba(255,255,255,0.69);
-webkit-box-shadow: 0px 2px 10px 0px rgba(255,255,255,0.69);
}

.secondaryButton
{
	height: 30px;
	line-height: 30px;
	margin-left: 20px;
	border: 1px solid white;
	color: white;

	transition: background-color 0.3s ease-in-out;
}

.secondaryButton:hover
{
	background-color: white;
	color: black;
}

.panel
{
	border-radius: 10px;
	background: #25262873;
	backdrop-filter: blur(10px);
	color: white;
}

.aboutList
{
	margin-top: 10px;
	display: flex;
	align-items: center;
}

.features
{
	margin-top: 10px;
	margin-bottom: 100px;
	display: flex;
	align-items: center;
}

.feature
{
	flex: 1;

	margin: 50px;

	display: flex;
	flex-direction: column;
	align-items: center;

	text-align: center;
}

.featureLink
{
	color: white;
	text-decoration: none;
}

.featureLink:hover
{
	text-decoration: underline;
}

.featureSlim
{
	flex: 1;
	margin: 10px;
}

.divider
{
	width: 1px;
	height: 150px;
	border-left: 1px solid #414244;
}

.featureIcon
{
	font-size: 40px;
}

.featureTitle
{
	margin-top: 20px;
	font-size: 15px;
}

.featureSubtitle
{
	margin-top: 10px;
	font-size: 12px;
	color: #8b898b;
}

.panelTitle
{
	font-size:25px; 
	margin-bottom:20px; 
	color: white; 
	font-weight: 100;
}

.youtubeVideo
{
	margin-bottom: 30px;
}


.discuss
{
	background: white;
	margin-bottom: 100px;
	padding: 10px;
}

.footer
{
	width: 100%;
	height: 100px;
	background-color: black;
}

.footerContent
{
	position: absolute;
	width:920px;

	left:50%;
    transform:translate(-50%,0);

	margin-top: 10px;
	display: flex;
}

.links
{
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	margin-left: auto;
	font-size: 12px;
}

.linkHeader
{
	color: white;
}

.linkEntry
{
	margin-top: 5px;
	color: #8b898b;
	text-decoration: none;
}

.linkEntry:hover
{
	text-decoration: underline;
	cursor: pointer;
}

.link
{
	color: white;
	text-decoration: none;
}

.link:hover
{
	text-decoration: underline;
}

.container
{
	margin-top: 100px;
	display: flex;
	flex-direction: column;
	margin-bottom: 100px;
}

.themeImage
{
	border-radius: 10px;
}

#discord-button
{
	margin-left: 20px;
}

#discord-button .icon 
{
	width: 25px;
	height: 25px;
	margin-right: 15px;
}

#discord-button .icon svg 
{
	fill: white;
}

#discord-button a 
{
	color: white;
	font-weight: bold;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	background-color: #7289da;
	text-decoration: none;
}

#discord-button a:hover
{
	background-color: #6a7fc9;
}