:root {
	--bg-color:darkslategrey;
	--box-color: black;
	--text-color: white;
  }

@font-face{
	font-family:'digital-clock-font';
	src: url('digital-7.regular.ttf');
}

body{
	color: var(--text-color);
	background-color: var(--bg-color);
}

hr {
    margin: 20px 10px;
    border-style: solid;
    opacity: 0.5;
  }

#settings{
	position: absolute;
	top: 50px;
	right: 50px;
	 color: black;
}

.symbol{
	width: 30px;
	text-align: center;
	margin: auto;
	position: relative;
	font-size: 25px;
	background-color: var(box-color);
	border-radius: 15px;
}

.plus{
	left: 110px;
	bottom: 108px;
}

.minus{
	right: 110px;
	bottom: 138px;
}

.symbol:hover{
	background-color: red;
}

/* Dropdown Button */
.dropbtn {
	background-color: #4CAF50;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	position: relative;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	position: relative;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}



.score{
	width: 50%;
	position: relative;
	bottom: 50px;
	margin: auto;
	text-align: center;
}

#home{
	position: absolute;
	left: 100px;
	top: 50px;
}
#guest{
	position: absolute;
	right: 100px;
	top: 50px;
}

#quarter{
	text-align: center;
	margin: auto;
	position: relative;
	top: -250px;
	width: 40%;
}

#tol-1{
	position: absolute;
	top: 500px;
	left: 100px;
}

#tol-2{
	position: absolute;
	top: 500px;
	right: 50px;
}

.dot {
	height: 50px;
	width: 50px;
	background-color: lightgray;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	bottom: 50px;
	right: 35px;
	margin: 0 20px;
  }

  .hidden{
	  opacity: 0%;
  }

.boxed {
    background-color: var(--box-color);
	border-radius: 10px;
	font-family:'digital-clock-font';
  }

h1{
	font-size: 250px;
}

h2{
	font-size: 80px;
}

#game-time {
	width: 33%;
	position: relative;
  	top: -150px;
	margin: auto;
	text-align: center;
}

#game-time:hover{
	background-color: red;
}

#shot-time {
	text-align: center;
	width: 20%;
	margin: auto;
	position: relative;
  	bottom: 400px;
}

#shot-time:hover{
	background-color: red;
}
