* {
	margin: 0;
	padding: 0;
}


/* to be able to push down the footer */

html,
body {
	scroll-behavior: smooth;
	height: 100%;
	min-height: 100%;
	margin-bottom: 185px;
}


/* to contain the game and rules in one div */

#container {
	min-height: 100%;
	margin: auto;
	padding-top: 25px;
	background-color: #e9ecef;
	width: 87%;
	padding-bottom: 25px;
	text-align: center;
}

.row {
	height: 100%;
	margin: 0 auto;
}

.startButton {
	padding-top: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
}

.gamebuttons {
	padding-top: 15px;
	text-align: center;
}

.gamebuttons input {
	margin: 0 5px 0 30px;
}

.gamebuttons label {
	margin: 0px 20px 0px 3px;
}


/* to keep the spacing in between and around the container */

.col-md-4,
.col-dm-4 {
	margin: auto;
	height: 100%;
}


/* to keep the spacing in between and around the container */

.col-md-4 p {
	height: 100%;
	margin-left: 2%;
	margin-right: 2%;
	padding-top: 25px;
}


/* to have spacing at the top of the game */

.interface {
	width: auto;
	padding-bottom: 100px;
	margin: auto;
}

.panel {
	width: 200px;
	height: 200px;
	display: none;
	cursor: pointer;
}


/* to provide an indicator for the player when using mouse */

.panel:hover {
	box-shadow: inset 0px 0px 0px 8px violet;
	box-sizing: border-box;
}

.bottom-right-panel {
	border-bottom-right-radius: 100%;
	background-color: red;
}

.bottom-left-panel {
	border-bottom-left-radius: 100%;
	background-color: blue;
}

.top-right-panel {
	border-top-right-radius: 100%;
	background-color: green;
}

.top-left-panel {
	border-top-left-radius: 100%;
	background-color: yellow;
}


/* provides the style for the JavaScript to flash important used to make sure it never conflict */

.flashing {
	background-color: white !important;
}

#startButton {
	position: absolute;
	height: 50px;
	width: 200px;
	font-size: 20px;
}

.leveltext {
	font-size: 35px;
}

#turn {
	background: black;
	color: red;
	font-family: courier;
	font-size: 25px;
	height: 35px;
	width: 137px;
	text-align: center;
	vertical-align: middle;
	line-height: 30px;
	margin: auto;
}


/* to make sure that there is a spacing between the bottom footer and the container */

footer {
	position: relative;
	bottom: 0;
	background-color: #e9ecef;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-top: 150px;
}

.bottom-cover {
	align-content: left;
	padding-left: 10px;
	position: relative;
}

.personal-info-item {
	margin-bottom: 0px;
	display: block;
	clear: both;
}

.personal-info-item .key,
.personal-info-item .value {
	padding-right: 2px;
	display: inline-block;
}

.personal-info-item .key p,
.personal-info-item .value p {
	margin: 0;
}

.personal-info-item .key {
	margin-right: 2px;
	padding-top: 2px;
	vertical-align: top;
}

.personal-info-item .key p h6 {
	font-weight: 700;
}

.personal-info-item .value a {
	text-align: left;
}


/* for tablets or similar sized devices */

@media screen and (max-width: 575px) {
	.gamebuttons label {
		padding-left: 20px;
	}
}


/* for tablets and large phones */

@media screen and (max-width: 474px) {
	.panel {
		width: 150px;
		height: 150px;
	}
}


/* for phones */

@media screen and (max-width: 368px) {
	.panel {
		width: 125px;
		height: 125px;
	}
	.gamebuttons label {
		padding-left: 20px;
	}
}


/* for phones */

@media screen and (max-width: 320px) {
	.panel {
		width: 100px;
		height: 100px;
	}
}