body{
	font-family: "Arial";
	background: #131313;
}
h1{
	text-align: center;
	font-size: 70px;
	margin-top: 50px;
	margin-bottom: 0;
	color: white;
	text-shadow: 3px 3px 0px rgba(0,0,0, 1);
}

p{
	color: white;
	text-shadow: 3px 3px 0px rgba(0,0,0, 1);
	
}


div,p,input,.timer
{
	box-sizing: border-box !important;
}

.timer
{
	
	width:600px;
	height:200px;
	text-align: center;
	font-size: 120px;
	letter-spacing: 5px;
	line-height: 120px;
	color: #F72D00;
	text-shadow: none;
	background: black;
	border: 10px solid #181818;
	margin-bottom: 100px;
}


.container{
	height: auto;
	width:1300px;
	margin-left: auto;
	margin-right: auto;
	color: orange;
	text-shadow: 2px 1px 4px #FFF;
}

.highlight
{
	border-color: white !important;
}

.scoreContainer{
	margin-left: auto;
	margin-right: auto;
}

.scoreContainer .side
{
	position: relative;
}

.scoreContainer .side .points
{	
	width: 500px;
	text-align: center;
	font-size: 300px;
	line-height: 280px;
	cursor: pointer;
}

.scoreContainer .side .points
{	
	background: black;
	border: 10px solid #181818;
}

.team-name
{
	font-size: 60px;
	text-transform: uppercase;
	text-align: center;
	background-color: transparent;
	color: white;
	padding: 20px;
}


.d-block
{
	display: block;
}


.d-flex
{
	display: flex;
}

.align-item-center
{
	align-items: center;
}

.justify-content-center
{
	justify-content: center;
}


.flex-column
{
	flex-direction: column;
}

.w-100
{
	width: 100% !important;
}

.space-between
{
	justify-content: space-between;
}

.space-around
{
	justify-content: space-around;
}

.ml-40
{
	margin-left: 40px;
}

.mr-60
{
	margin-right: 60px;
}

.mt-50
{
	margin-top: 50px;
}

.btn-points
{
	display: none;
	width: 300px;
}

.btn-points > button
{
	background-color: transparent !important;
	color: white;
	font-size: 20px;
	border-radius: 100px;
	border: 3px solid orange !important;
	height: 50px;
	width: 50px;
	cursor: pointer;
}

.btn-points > button:hover
{
	background-color: crimson !important;
	border: 1px solid crimson !important;
	color: white;
}



.star {
	position: absolute;
	top: -68px;
	left: -44px;
	margin: 40px 0;
	display: block;
	color: red;
	width: 0px;
	height: 0px;
	border-right: 50px solid transparent;
	border-bottom: 35px solid yellow;
	border-left: 50px solid transparent;
	transform: rotate(35deg);
	opacity: 0;
}
.star:before {
	border-bottom: 40px solid yellow;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	position: absolute;
	height: 0;
	width: 0;
	top: -22.5px;
	left: -32.5px;
	display: block;
	content: '';
	transform: rotate(-35deg);
}
.star:after {
	position: absolute;
	display: block;
	color: red;
	top: 1.5px;
	left: -52.5px;
	width: 0px;
	height: 0px;
	border-right: 50px solid transparent;
	border-bottom: 35px solid yellow;
	border-left: 50px solid transparent;
	transform: rotate(-70deg);
	content: '';
}


.btn-step {
	display: none;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	width: 0;
	height: 74px;
  
	border-color: transparent transparent transparent #202020;
	transition: 100ms all ease;
	cursor: pointer;
  
	border-style: solid;
	border-width: 37px 0 37px 60px;
  }

  .btn-step:hover
  {
	border-color: transparent transparent transparent white;
  }


  .steps
  {
	  font-size: 20px !important;
	  color: white;
	  line-height: initial !important;
  }

  .rotate-center {
	-webkit-animation: rotate-center 3s cubic-bezier(0.680, -0.550, 0.265, 1.550) infinite both;
	        animation: rotate-center 3s cubic-bezier(0.680, -0.550, 0.265, 1.550) infinite both;
}

 /* ----------------------------------------------
 * Generated by Animista on 2020-2-14 16:30:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
	0% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
			  transform: rotate(360deg);
	}
  }
  @keyframes rotate-center {
	0% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	100% {
	  -webkit-transform: rotate(360deg);
			  transform: rotate(360deg);
	}
  }
  