body {
  font-family: Nunito, sans-serif;
  min-height: 100vh;
  margin-top: 4em;
  #display: grid;
  place-items: center;
  #color: var(--dark);
  #background-color: var(--background);
  #background: linear-gradient(-20deg, var(--highlight), var(--background) 60%);
}
.nav-link {
	font-family: Nunito, sans-serif;
}
.active, .navbar-dark .navbar-nav > li > a:hover{
  background-color: #DA5F3E;
  #color: #3ab380;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(45deg);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-90deg) translateX(7px) ;
}
h6 {
  /* margin: 20px; */
  font-family: "Paytone One", Helvetica, sans-serif;
  color: #202020;
  text-transform: uppercase;
}
h6 span {
  display: block;
  margin: 11px 0 6px 0;
  font-size: 30px;
  line-height: 0px;
  color: #b3614c; 
  text-shadow: 0 13.36px 8.896px #9c5542,0 -2px 1px #f8f5f2;
  letter-spacing: 2px;
}
h1 {
  line-height: 1em;
  margin-bottom: 0;
  padding-bottom: 0px;
  font-size: 2.8em;
  font-weight: bold;
}
.cen-container {
  padding: 10px;
  margin-top: 4px;
  #border: 4px;
  background-color: #927d67; 
  box-shadow: 0px 5px 15px #a99a86;
  width: fit-content;
}
.score-cen-container {
  padding: 10px;
  margin-top: 4px;
  #border: 4px;
  background-color: #927d67; 
  #box-shadow: 0px 5px 15px #a99a86;
  #width: fit-content;
}
.message-container {
  display: none;
  height: 50%;
  position: absolute;
  top: 0;
  width: 100%;
}
td {
  border-width: 1px;
  border-color: #000;
  border-style: solid;
  
}
.message {
  background-color: #ddd;
  box-shadow: 2px 2px 4px #222;
  line-height: 90px;
  margin: 40% auto 0;
  opacity: .9;
  text-align: center;
  width: 50%;
}

.board {
  background-color: #a99a86;
  border: solid 1px #000;
  box-shadow: 2px 2px 4px #222;
  width: 580px;
}

.board-cells {
  border-collapse: collapse;
  margin: 10px;
}

.cell {
  height: 70px;
  width: 70px;
}

.valid {
  background-color: #E07A5F;
  cursor: pointer;
}

.valid:hover {
  background-color: #e9a18f;
}

.stone {
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px #222;
  height: 100%;
  margin: auto;
  transition: width .2s 0s linear, background-color 0s .2s linear;
  width: 100%;
}

.black,
.black-label,
.black-bar {
  background-color: #202020;
}

.white,
.white-label,
.white-bar {
  background-color: #fff;
}

.turn-effect {
  width: 0;
}

.score-labels {
  font-size: 0;
  margin: 10px 0;
  width: 600px;
}

.score-label {
  box-shadow: 4px 4px 4px #111;
  box-sizing: border-box;
  display: inline-block;
  font-size: 16px;
  padding: 5px 0;
  text-align: center;
  width: 30%;
}

.black-label {
  #border: solid 2px #202020;
  color: #a99a86;
}

.white-label {
  #border: solid 2px #999;
  color: #927d67;
  margin-left: 40%;
}

.turn {
  border: solid 2px #a99a86;
  #color: #000;
}

.score-bars {
  font-size: 0;
}

.score-bar {
  box-shadow: 4px 4px 6px #111;
  display: inline-block;
  height: 38px;
  transition: width .4s 0s ease;
}

.reset-container {
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}
.btn-active:active {
	box-shadow: none;
	position: relative;
	top: .2em;
}
.start-container {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  margin: auto;
}

.start-overlay {
  background-color: #ddd;
  height: 100%;
  opacity: .6;
  position: absolute;
  width: 100%;
}

.start-content {
  background-color: #EEE;
  box-shadow: 2px 2px 4px #222;
  margin: 25% auto 0;
  overflow: auto;
  position: relative;
  width: 50%;
}

.start-title {
  background-color: #E07A5F;
  color: #EEE;
  font-size: 2em;
  padding: 10px 0;
  text-align: center;
}

.start-p {
  text-align: center;
}

.start-p-span {
  display: inline-block;
  width: 55px;
}

.button {
  background-color: #E07A5F;
  border: none;
  color: #EEE;
  cursor: pointer;
  font-size: 16px;
  height: 38px;
  outline: #080;
  width: 30%;
}

.button:hover {
  background-color: #e9a18f;
  color: #EEE;
}
.btn-circle {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
}
.btn-circle i {
  position: relative;
  top: -1px;
}

.btn-circle-md {
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 1.1rem;
  border-color: #c8beb3;
  border-width: 2px;
}
.copyright-area{
  padding: 15px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #F1EBE5;
}
.copyright-text p a{
  color: #E07A5F;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-menu ul {
  margin: 0px;
  padding: 0px;
}

.float{
	position:fixed;
	width:100%;
	height:74px;
	bottom:0px;
	right:0px;
	#background-color:#E07A5F;
	color:#FFF;
	#border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
}
.my-float{
	margin-top:22px;
}
@media only screen and (max-width: 720px) {
  /* For mobile phones: */
  body  {
    padding-bottom: 10em;  
  }
  .cell {
    height: 39px;
    width: 39px;
  }
  .board-cells {
    #border-collapse: collapse;
    margin: 2px;
  }
  .board {
    #background-color: #e79f41;
    border: solid 1px #000;
    box-shadow: none;
    margin: 0;
    width: 325px;
    padding: 0px;
  }
  .score-labels {
    font-size: 0;
    margin: auto;
    width: 320px;
  }
  
  .score-cen-container {
    padding: 10px;
    #margin-top: 4px;
    #border: 4px;
    background-color: #927d67; 
    #box-shadow: 0px 5px 15px #a99a86;
    #width: fit-content;
  }
  .start-container {
    height: 90%;
    position: absolute;
    top: 0;


    #margin: auto;
    width: 90%;

    padding: 10px;

  }
  .start-content {
    width: 80%;
  }
}

