@import url('font/Pacifico.css');
@import url('font/Roboto.css');
@import url('font/Bangers.css');
@import url('font/material-icons.css');



.hidden { display: none; }


.center{


	width: 90vw;

	text-align:center;

	margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

	padding-top: 18vh;
	max-width: 700px;
}

.title {
  font-family: 'Pacifico','Roboto', sans-serif;
  font-weight: 400;
  /*font-size: calc(3vw + 3vh);*/
  font-size: calc(50px + 1vw);



 }

.help{

	font-family: 'Bangers';
	/*font-size:  calc(1.5vw + 1.5vh);*/
	font-size: calc(25px + 1vw);
	text-align:center;
    font-weight: 400;
    font-style: normal;
}


.ready{

	font-family: 'Pacifico','Roboto', sans-serif;
	font-weight: 400;
	/*font-size:  calc(1.5vw + 1.5vh);*/
	font-size: calc(20px + 1vw);
	cursor:pointer;
	display: none;

}
.answer {

	display: none;
	font-family: 'Bangers';
	text-align:center;
    font-weight: 400;
    font-style: normal;
	/*font-size:  calc(2vw + 2vh);*/
	font-size: calc(40px + 1vw);
    position: relative;
	top: 8vh;

}


.replay{

	display: none;
	font-family: 'Pacifico';
	/*font-size:  calc(1vw + 1vh);*/
	font-size: calc(15px + 1vw);
	text-align:center;
    font-weight: 400;
    font-style: normal;

	cursor:pointer;
    position: relative;
	top: 20px;

}


.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
/*  font-size: 24px;   Preferred icon size */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';

  /* font-size: calc(1.5vw + 1.5vh);*/
  font-size: calc(20px + 1vw);
   /*position: relative;   top: 10px; */
   margin-right:5px;
    display: inline-flex;
    vertical-align: middle;

	top: -3px;
    position: relative;

}

p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

.word {
  position: absolute;
  width: 220px;
  opacity: 0;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wisteria {  color: #8e44ad; }
.belize {  color: #2980b9;}
.pomegranate {  color: #c0392b;}
.green {  color: #16a085;}
.midnight {  color: #2c3e50;}

html {
	overflow: hidden;
	position: fixed;
}
body {

	margin:0px;
	width: 100vw;
	height: 100vh;
	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;
	overflow: hidden;
}

@-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%	}
}






.text-js{
  opacity: 0;
}
.cursor{
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: -5px;
  width: 2px;
  /* Change colour of Cursor Here */
  background-color: white;
  z-index: 1;
  animation: flash 0.5s none infinite alternate;
}
@keyframes flash{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
