@import url(https://fonts.googleapis.com/css?family=Roboto);

body {
  font-size: 6em;
  text-align: center;
  background-color: #333333;
  font-family: 'Roboto', Arial;
  color: #fff;
}

#count-area{
  height: calc(100vh * 0.35);
}

#count-label {
  margin: 0 auto;
  padding-top: calc(100% * 0.035);
  font-size: 30px;
  height: 45px;
}

#count {
  margin: 0;
  font-weight: bold;
  color: rgb(72, 248, 248);
  font-size: 120px;
  text-shadow: -1px -2px 30px rgba(0,170,170,1);
  letter-spacing: 0.1em;
  text-indent: 12px;  /* font-size*letter-spacingで中央寄せをする */
}

#score-area {
  position: fixed;
  top: 50px;
  right: 50px;
  color: rgb(151 148 148)
}
#score-label {
  margin: 0 auto;
  padding-top: calc(100% * 0.035);
  font-size: 20px;
  height: 28px;
}
#score {
  margin: 0;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.1em;
  text-indent: 4px;  /* font-size*letter-spacingで中央寄せをする */
}

.wrap {
  font-size: 5vw;
  padding: 80px 40px;
  background-color: #494747;
  font-weight: bold;
  letter-spacing: 0.06em;
  white-space: nowrap
}

.typed {
  color: rgb(229, 0, 250);
  text-shadow: -1px -2px 20px rgba(180, 65, 190, 0.8);
}

.mistyped {
  background-color: rgba(255, 30, 161, 0.938);
}

button {
	color: rgba(255,255,255,1);
	background: none;
	border-radius: 0;
	padding: 0.55em 2em;
	letter-spacing: 0.3em;
	font-size: 0.4em;
	transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
	margin: 1em;
  box-shadow: inset 0 0 1em rgba(0,170,170,0.5), 0 0 1em rgba(0,170,170,0.5);
  border: #0dd solid 2px;
  font-family: 'Roboto', Arial;
  position: absolute;
  bottom: 30px;
}

button.mini {
	color: rgba(255,255,255,1);
	background: none;
	border-radius: 0;
	padding: 0.55em 2em;
	letter-spacing: 0.3em;
	font-size: 0.2em;
	transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
	margin: 1em;
  box-shadow: inset 0 0 1em rgba(0,170,170,0.5), 0 0 1em rgba(0,170,170,0.5);
  border: #0dd solid 2px;
  font-family: 'Roboto', Arial;
  position: absolute;
  bottom: auto;
}

button:hover {
  background-color: #0dd;
  box-shadow: inset 0 0 0 rgba(0,170,170,0.5), 0 0 1.5em rgba(0,170,170,0.7);
  cursor: pointer;
}

#start {
  left: calc(100vw * 0.5 - 200px);
}

#modal {
  display: none;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  font-size: 30px;
}

#modal a {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  text-decoration: none;
}

#modal a:hover {
  cursor: pointer;
}

#disp-score {
  margin: calc(100vh * 0.4) auto 0 auto;
}
#disp-score > div {
  padding: 10px 0;
}

#poke-img {
  display: none;
}

#poke-img img {
  width: 150px;
}

.go-home {
  left: calc(100vw * 0.5 - 134px);
  font-size: 0.7em;
}
.go-home.mini {
  display: none;
  position: fixed;
  top: 50px;
  left: 50px;
  font-size: 0.2em;
}


/* パーティクル */
canvas {
  position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	pointer-events:none;
}




