.AtmosensoryLogo{
	width: 90vw;
    height: 18vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.HomeContainer{
	display: flex;
	flex-direction: column;
	position: relative;
}

.TopLinkContainer{
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
	background-color: #eee;
	box-shadow: inset black 0px 0px 6px;
}

.HomePostsContainer{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ActiveLink{
	color: #e91e63;
	font-weight: bold;
	text-shadow: black 1px 1px;
}

/* Nexus */
.HomeNexusContainer{
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100vh;
}

.HomeNexusOverlay{
	display: flex;
	flex-direction: column;
	align-items: center;
	/* background-image: radial-gradient(black, transparent 75%); */
}

.NexusProjectPic{
	width: 90%;
	max-width: 550px;
	margin-bottom: 40px;
	background-image: radial-gradient(white, transparent 75%);
}

.NexusBlurb{
	padding: 20px;
	margin-top: 30vh;
	margin-bottom: 40px;
	background-color: #111;
	max-width: 520px;
	font-size: 14pt;
	text-align: center;
	box-shadow: #000a 0px 4px 8px;
}

.HomeMiddleContainer{
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.HomeAboutText{
	width: 80%;
	background-color: #c1c1c1;
	padding: 20px;
	margin: 40px 0;
	border-radius: 4px;
	font-size: 16px;
	font-family: neue-haas-grotesk-display, sans-serif;
	border: #ceb88b solid 1px;
}

.HomeMiddle2Container{
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.HomeJoinUsText{
	background-color: #444;
	padding: 20px;
	margin: 40px 0;
	border-radius: 4px;
	font-size: 14pt;
	font-family: monospace;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.HomeJoinUsButtons{
	display: flex;
	justify-content: space-evenly;
	width: 50%;
}

.HomeDiscordButton{
	margin-top: 20px;
	width: fit-content;
	padding: 12px;
	border-radius: 4px;
	cursor: pointer;
	color: #fff;
	background-image: linear-gradient(0deg, #001c81, #7785cc);
	display: flex;
	align-items: center;
	box-shadow: #222 2px 2px 8px 2px;
}

.HomeDiscordButton:hover{
	background-image: linear-gradient(0deg, #7785cc, #001c81);
}

.HomeDiscordIcon{
	background-image: url(/pictures/discord_logo.png);
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 8px;
}

.HomeBottomContainer{
	display: flex;
	flex-direction: column;
	background-image: url(/pictures/homebg2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	align-items: center;
}

.HomeBubbleContainer{
	min-width: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.HomeBubble{
	padding: 20px;
	margin: 40px 0;
	background-color: #4c00ccdd;
	max-width: 520px;
	font-size: 14pt;
	text-align: center;
	box-shadow: #000a 0px 4px 8px;
}

.HomeBubbleLeft{
	align-self: flex-start;
}

.HomeBubbleRight{
	align-self: flex-end;
}

.HomeBubbleTitle{
	font-size: 16pt;
	padding-bottom: 8px;
}