body{
  /*background: url(images/background-cement-concrete-242236.jpg);*/
  background-color: #1f2833 !important;
  background-repeat: no-repeat;
  background-size: cover;
 }

.container{
	width: 100%;
	margin: 0 auto;
}

.row{
	margin-top: 10px;
	text-align: center;
}

/*#lastsect{
	margin-top: 0px;
	text-align: center;
}*/

.title{
	font-family: 'Krona One', sans-serif !important;
	color:#66fcf1;
/*	color: #FFFFFF;*/
	text-transform: uppercase;
	font-size: 45px;
	margin-bottom: 0px;
	margin-top: 20px;
}

.subtitle{
	font-family: 'Overpass', sans-serif;
	color: #c5c6c7;
	text-transform: lowercase;
	font-size: 25px;
	font-weight: bold;
	font-style: italic;
	margin-top: -5px;
	margin-bottom: 0px;

}

#timer {
	font-family: 'Overpass', sans-serif;
	text-transform: lowercase;
	font-size: 18px;
	color: #E20377;
}

#object-image {
	width: 330px;
	height: 280px;
	text-align: center;
	margin: -2px auto;
	padding-bottom: 8px;
	padding-top: 2px;
}

.img {
	width: 320px;
	height: 280px;
	margin: 0 auto;
	border-radius: 50%;
}

#instruction {
	text-align: left;
}

#hintmsg {
/*	background-color: #FAF5E6;*/
	display: inline-flex;
	font-family: 'Overpass', sans-serif;
	text-transform: lowercase;
	width: 100px;
	height: 30px;
	font-size: 18px;
	text-align: left;
	color: #0C8203;
	font-style: italic;
	margin-bottom: 0px;
}

#player-guess {
	visibility: hidden;
	display: inline-block;
/*	background-color: #868786;*/
	border-color: #45a29e;
	width: 80%;
	height: 45px;
	font-size: 30px;
	text-align: center;
	color: #c5c6c7;
	margin-top: 10px;
	border-radius: 2%;
	border-width: 2px;
	border-style: solid;
}

#displaymsg {
	font-family: 'Overpass', sans-serif;
	text-transform: lowercase;
	visibility: hidden;
	font-weight: bold;
	font-size: 20px;
/*	background-color: grey;
	border: 2px solid red;*/
	width: 370px;
	height: 30px;
	text-align: center;
	margin: 10px auto;
	color: #E20377;
}

#gameboard {
/*	width: 700px;*/
	height: 450px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 70px auto 0;
}

.square {
	width: 9%;
	background-color: #FFFBF7;
	height: 50px;
/*	border: 0.5px solid #DF7A01;*/
	border-radius: 10%;
	margin: 2px;
	color: #443D40;;
	font-size: 26px;
/*	font-weight: bold;*/
	text-align: center;
	cursor: pointer;
}

.square:hover {
  background-color: #45a29e;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

/*buttons*/
#start{
	margin-top: 5px;
}

#hintbutton {
	visibility: hidden;
	text-align: center;
}

#next{
	visibility: hidden;
	display: inline-block;
}

table, td {
	width: 100%;
  border: 0.5px solid #D0D1C9;
  table-layout: fixed;
}

td{
	text-align: center;
	vertical-align: middle;
}

tr:nth-child(odd) {
	background-color: #EFE5FF;
}

#helpbutton {
	background-color: #FAFAFA;
	color: black;
	border: white;
	height: 30px;
	padding-top: 5px;
	font-size: 16px;
}

#helprow {
	visibility: hidden;
	display: flex;
	justify-content: flex-end;
	margin-top: -34px;
	margin-right: 0px;
}

#hint {
	display: inline-flex;
	justify-content: center;
	margin-top: 0px;
	margin-left: -140px;
	margin-right: 10px;
}

.error {
    position: relative;
    animation: shake .1s linear;
    animation-iteration-count: 3;
}

@keyframes shake {
    0% { left: -5px; }
    100% { right: -5px; }
}