body{
	padding:0;
}
.snake-col{
	background-color:"red";
	display:inline-block;
}
#snake_container{
	margin:auto;
	width:auto;
	border:1px solid black;
	width:85vw;
}
#buttonsContainer{
	margin:auto;
	margin-top:10px;
	width:85vw;
	text-align:center;
	position:relative;
}
.buttonContainer *{
	margin:5px;
}
h3{
	width:100%;
	text-align:center;
}
#contentContainer{
	margin-top:10px;
}
#gameOver{
	background-image:url('./assets/confetti.gif');
}
.large-msg{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:rgb(249, 219, 189, .6);
	display:none;
}
.center-in-container{
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-content:center;
	align-items:center;
}
.top-right{
	position:absolute;
	top:10px;
	right:10px;
}
.icon-button{
	width:25px;
	height:25px;
	cursor:pointer;
}
.imageHolder{
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	height:50vh;
}
.custom-switch label::before,label::after{
	cursor:pointer;
}
.small-msg{
	position:absolute;
	top:50%; left:50%;
	transform:translate(-50%, -50%);
	background-color:rgb(249, 219, 189, .6);
	padding:10px;
	border-radius:5px;
}
.loading-cover{
	position:absolute;
	height:100%;
	width:100%;
	background-color:white;
	z-index:1000;
}