#homePageContainer{
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--nimmtPurple);
	color: rgba(255, 255, 255, 1);
	margin: 0 0 10vh 0;
}

h1 {
	font-size: 8em;
	margin: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

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

.section {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 3em;
}

.button.selected {
	background: white;
	color: var(--nimmtPurple);
}

#form{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.inputFieldContainer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.statusImg {
	width: 0.8em;
	height: 0.8em;
	visibility: hidden;
}

.inputPrompt{
	margin: 0 0.5em 0 0.2em;
	white-space: nowrap;
	overflow: hidden;
}

input[type=text]{
	font-size: 0.7em;
	font-family: 'Bangers';
	padding: 0.1em;
	width: 10em;
	color: var(--nimmtPurple);
	border: 0px;
}

input[type=text]:focus{
	background: var(--lightPurple);
}

.error{
	font-size: 0.7em;
	color: rgba(235, 117, 117, 1);
}

#submitButton {
    font-size: 1em;
    background: transparent;
    border: 0;
    margin: 10px;
    border-radius: 0.5em;
    padding: 0.5em;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: "Bangers";
}

#submitButton:hover {
    background: var(--lightPurple);
    color: white;
}

#nickNameError{
	display: none;
}

#codeError{
	display: none;
}

#inputSection {
	visibility: hidden;
}
