/* Copyright (c) 2017 MIT 6.813/6.831 course staff, all rights reserved.
 * Redistribution of original or derived work requires permission of course staff.
 */

/* REMOVE ME - dashed lines and height for debugging */
/*
#mainColumn {
  outline: 1px dashed orange;
  height: 200px;
}
*/
/* Your css code here! */

.container {
  background-image: url('./graphics/bg.jpeg');
  background-size: cover;
  height: 100%;
}

div {
	/*border: 1px solid green;*/
}

body {
  height: 100dvh;
	/* overflow: hidden; */
	margin: auto;
	vertical-align: middle;
	font-weight: bold;
	text-align: center;
}

img {
	position: absolute;
}

.btn {
	margin: 5px;
  background-color: #E53935;
  color: #FFF;
  outline: none;
}

.btn:hover {
	background-color: #8c8c8c;
}

.arrow {
	margin: 0;
	color: white;
}

.arrow:disabled {
	background-color: grey;
}

.arrow:enabled {
	background-color: #4889f0;
}

#firstColumn, #mainColumn, #lastColumn {
	margin: auto;
	padding: 10px;
}

#firstColumn {
	z-index: 3;
  background-color: #43A04755;
  backdrop-filter: blur(20px);
}

#gameTitle {
	font-weight: bold;
  background: linear-gradient(135deg, #D8922A, #F9C967, #F2B44E, #E18E2E);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#gameBoard {
	z-index: 1;
	margin: auto;
	width: 320px;
	height: 320px;
	table-layout: fixed;
	position: relative;
  background-color: #FFF5;
  backdrop-filter: blur(20px);
  border-radius: 12px;
}

#moveInput {
	width: 50px;
}

#moveInput:hover, #moveInput:focus {
	box-shadow: 0 0 5px blue;
}

#arrowContainer {
	margin: 20px auto;
}

#canvas {
	z-index: 10;
	position: absolute;
	top: 10px;
	left: calc(50% - 160px);
	opacity: 0.7;
}

#scoreLabel {
  border-radius: 50px;
	width: 10em;
}

#cover {
	z-index: 2;
	position: absolute;
	top: -500px;
	left: calc(50% - 160px);
	background-color: white;
	width: 320px;
	height: 500px;
}

#newGame, #showMove {
	width: 10em;
}

#DEBUG {
	z-index: 100;
	position: fixed;
	top: 50px;
	left: 25px;
	background-color: #ff4d4d;
	opacity: 0.85;
}

#startGameContainer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #43A04777;
  backdrop-filter: blur(20px);
  z-index: 100;
}

.startGameSubContainer {
  background-color: #FFF;
  border-radius: 12px;
  height: 20%;
  width: 80%;
  margin: 0 auto;
  margin-top: 40vh;
}

.musicDiv {
  margin-right: calc((100% - 320px) / 2);
  background-color: #FFF5;
  backdrop-filter: blur(20px);
  border-radius: 50px;
  width: 120px;
  padding: 8px 0;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;

}
