
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,.home h2,.home h3 {
	font-size:100px;
    color: #f35626;
    background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 60s infinite linear;
}

@-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }
    
    to {
      -webkit-filter: hue-rotate(360deg);
    }
}
body{
	background-color: cyan;
}
.container{
	display:flex;
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
	
}
h1{
	font-size: 100px;	
}
.wrapper{
	display:none;
	width: 100%;
}

.box{
	height: 10em;
    width: 100%;
	border: 2px solid black;
	margin: 10px;
	display: flex;
	flex-flow: row wrap;
}
.box1{
	width: 100%;
    height: 50%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	align-content: stretch;
}


.grid-container{
	background-color: #F1EDEF;
	display: inline-grid;
	grid-template-columns: auto auto auto auto auto;
	padding: 10px;
	margin: 10px;

}
.grid-item{
	border: 2px solid black;
    padding: 15px;
    font-size: 30px;
    text-align: center;
    width: 55px;
    height: 55px;
}

.box h2{
	/*position: relative;*/
    width: 50px;
     height: 20%;
    text-align: center;
    font-size: 30px;
}
.userClick{
	border: 2px solid red;
	border-radius: 100%;
	background-color: red;
	color:red;

}
#newGame{
    background-color: rgba(0, 220, 0, 1);
     margin: 6em 45em;
     width: 150px;
     height:100px;
     font-size: 20px;
}
.buttonStyle{
    background-color: rgba(255, 220, 0, 1);
     margin: 3em;
     width: 100px;
    height: 100px;
    font-size: 35px;
        padding: 4em;

}
.buttonStyle:hover{
	 background-color: red;

	}

.home h2, .home h3{
	text-align: center;
	margin: 1em;
	font-size: 50px;
}

.xline {
	border : 2px solid red;
	transform : rotate(45deg);
	height : 72px;
	width : 0;
	top : 0;
	margin-top: 416px;
	margin-left: 7px;
	padding: 0;
	position : absolute;
}

.yline {
	border : 2px solid red;
	transform : rotate(135deg);
	height : 72px;
	width : 0;
	top : 0;
	margin-top: 416px;
	margin-left: 7px;
	padding: 0;
	position : absolute;
}
			
.timer{
	
      text-align: center;
    font-weight: bolder;
    font-size: 30px;
    margin: 1em 23em;
    border: 2px solid black;
    padding: 10px;
    float: right;
    width: 150px;
    border-radius: 100%;


}	