* {
	box-sizing:border-box;
	padding:0;
	margin:0;
	font-family:'Arial';
}

button{
	padding:2%;
	background-color:#c4f5c8;
	border:none;
}

.mainContainer{
	padding-top:10vh;
	display:flex;
	flex-flow:column;
	width:100vw;
	height:100vh;
	background-color:#9c0a00;
	color:white;
	text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, 0px 8px 7px #001135;
	background-image:url('smallback.png');
	background-size:100% 100%;
}

.newPlayerDiv{
	display:flex;
	flex-flow:column;
	width:100%;
	height:100%;
	align-items:center;
}

.newPlayerDiv>div{
	font-size:10vw;
	margin-top:7vh;
}

.newPlayerDiv>input{
	font-size:10vw;
	width:75%;
	margin:5vh 0 4vh 0;
	padding:1%;
	background-color:#c4f5c8;
	text-align:center;
	border:none;
	border-radius:2vh;
	
}

.newPlayerDiv>button{
	font-size:7vw;
	width:75%;
	border-radius:2vh;
}

.waitingRoomDiv{
	font-size:8vw;
	width:100%;
	text-align:center;
	margin-top:35vh;
}

.questionText{
	text-align:center;
	font-size:7vw;
	padding:10vh 5vw 0vh 5vw;
	line-height:11vw;
}

.answerDiv{
	display:flex;
	flex-flow:column;
	align-items:center;
	width:100%;
	margin-top:auto;
	padding-bottom:20vh;
}

.answerButton{
	margin-bottom:4vh;
	width:70%;
	font-size:6vw;
	padding:3%;
	border-radius:2vh;
}

.waiting{
	font-size:7vw;
	height:60vh;
	width:100vw;
	display:flex;
	align-items:center;
	justify-content:center;
}

.result1{
	font-size:9vw;
	height:13vw;
	width:100vw;
	display:flex;
	align-items:center;
	justify-content:center;
}

.result2{
	font-size:5vw;
	height:7vw;
	width:100vw;
	display:flex;
	align-items:center;
	justify-content:center;
}

.resultImg{
	margin-top:2vw;
	object-fit: contain;
	height:75vh;
	width:95vw;
	display:flex;
	align-self:center;
}

.joinError{
	font-size:6vw !important; 
}