
body { 
  
	cursor: url('cursor (1).cur'), default;
  font-size: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
/* font-family: 'Wallpoet', cursive; */
/* font-family: 'Lovers Quarrel', cursive;#6 */
/* font-family: 'Plaster', cursive;#5 */
/* font-family: 'Akronim', cursive; #3 */
font-family: 'Combo', cursive;
/* font-family: 'Astloch', cursive;#1 */
  text-align: center;
  max-width: 500px;
  margin: auto;

	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}



input{
    text-align: center;
}


  #board { 


		margin: 60px auto;
    width: 500px;
    border-collapse: collapse;
    table-layout: fixed;
}
  td {
		height: 100px;
		border: 8px solid #23A6D5;
    /* color: #23D5AB; */
    font-size: 40px;
  }

  td:first-of-type {
    border-left-color: transparent;
    border-top-color: transparent;
  }
  td:nth-of-type(2) {
    border-top-color: transparent;
  }
  td:nth-of-type(3) {
    border-right-color: transparent;
    border-top-color: transparent;
  }
  tr:nth-of-type(3) td {
    border-bottom-color: transparent;
  }


@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
	
  50% {
		transform: rotate(-10deg);
  }
	
  70% {
		transform: rotate(3deg);
  }
	
  to {
		opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
	animation-name: jackInTheBox;
}


h1,
h6 {
    bottom: 5%;
    /* color: #23D5AB; */
    font-family: 'Open Sans';
    font-weight: 800;
    text-align: center;
    position: absolute;
    /* top: 80%; */
    right: 0;
    left: 0;
	
}