
/*********************************/

@font-face {
	font-family: helvetica-upload;
	src: url(../helvetica/Helvetica.ttf);
	}
  
@font-face {
	font-family: helvetica-bold-upload;
	src: url(../helvetica/Helvetica-Bold.ttf);
	}
	
.opponent-container {
	display: flex;
	justify-content: center;
	column-gap: 10px;
	}

.opponent-button {
	width: auto;
	padding-top: 3px;
	padding-bottom: 4px;
	}
	
.opponent-button:hover {
	border: 2px solid black;
	}
	
.opponent-button:active {
	background-color: rgb(84, 83, 85)
	}

.piece-container {
	display: none;
	justify-content: center;
	border: 2px solid black;
	column-gap: 10px;
	height: auto;
	width: 91.8%;
	background-color: rgb(189, 186, 192);
	position: relative;
	z-index: 10;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	}

.piece-button {
	width: 40px;
	height: 35px;
	position: relative;
	top: 3px;
	}

.piece-button:hover {
	border: 2px solid black;
	}

.piece-button:active {
	background-color: rgb(84, 83, 85)
	}

.piece-prompt-container {
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
}

.piece-prompt {
	font-family: helvetica, sans-serif;
	margin-left: 20px;
	margin-right: 20px;
	display: relative;
	}

.subtext {
	font-size: 12px;
	text-align: center;
	}

.player-summary {
    display: block;
    display: none;
    position: relative;
    margin-top: -10px;
	padding-left: 20px;
    left: 50%;
    width: 300px;
    transform: translate(-175px, 0);
    bottom: 5px;
    text-transform: capitalize;
    font-family: helvetica-bold-upload;
	}

.board {
    position: relative;
    margin-top: -0.5%;
	margin-left: 0.1%;
	margin-right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    height: 300px;
    width: 300px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    border: black solid 1px;
	}

.board > div {
	border: black solid 1px;
	text-align: center;
	font-size: 38px;
	padding-top: 30px;
    }
	
.board > div:hover {
	cursor: default;
	}

@media only screen and (max-width: 600px) {
	.board {
    position: relative;
    margin-top: -0.5%;
	margin-left: 0.1%;
	margin-right: auto;
	left: 50%;
    transform: translate(-50%, 0);
    height: 270px;
    width: 270px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    border: black solid 1px;
	text-align: center;
	}
}

.reset-button {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    height: 60px;
    font-size: 24px;
    margin-top: 20px;
	}

.winning-form {
    position: absolute;
    height: 200px;
    width: 250px;
    border: 1px solid black;
	margin-top: 50%;
    top: -11.15%; /*330px;*/
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 5;
    background-color: white;
    display: none;
	}

.winning-form > div {
	}

@media only screen and (max-width: 600px) {
	.winning-form {
    position: absolute;
    height: 200px;
    width: 250px;
    border: 1px solid black;
    top: 99.999%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 5;
    background-color: white;
    display: none;
	}
}
	
.exit {
	position: absolute;
	top: 5px;
	right: 12px;
	font-size: 20px;
	font-weight: bold;
	}
	
.exit:hover {
	cursor: pointer;
	}
		
.congrats {
	text-align: center;
	margin-top: 40px;
	font-family: helvetica, sans-serif;
	font-size: 20px;
    }
	
.rematch {
	grid-area: buttonOne;
	height: 50px;
	width: 90px;
	margin: 35px auto auto 30px;
    }
	
.reset {
	grid-area: buttonTwo;
	height: 50px;
	width: 90px;
	margin-left: auto;
	margin-right: auto;
	margin: 15px 5px 20px 5px;
    }
	
.end-button {
	font-family: helvetica, sans-serif;
	font-size: 18px;
	margin-left: 31%;
	margin-right: auto;
    }
	
.end-button:hover {
	border: 2px solid black;
	}
		
.end-button:active {
	background-color: rgb(84, 83, 85);
	}
    