<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
	color: #fff;
	text-align: center;
	font-family: 'Impact';
	margin: 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
  width: 100%;
  overflow-x: hidden;
  user-select: none;
}

html {
  height: 100%;
}

.bg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  background: #fff url('images/bg.jpg') no-repeat top center;
  background-size: cover;
}

.wrapper{
	max-width: 980px;
  width: 100%;
  box-sizing: border-box;
	margin: 0px auto;
  display: inline-block;
  position: relative;
  text-align: center;
  margin-top: 50px;  
  transform-origin: top center;
}


.logo {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.copy {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.char{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.title {
  margin-top: 40px;
  width: 100%;
  display: inline-block;
}

#play {
  cursor: pointer;
  clear: both;
  margin-top: 30px;
  display: inline-block;
  transform-origin: center;
  animation-name: pulse;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-duration: 3s;
}

@keyframes pulse {
  0% { transform: scale(1);  }
  50% { transform: scale(0.85);  }
  100% { transform: scale(1);  }
}

.intro {
  /*display: none;*/
}

.game {
  margin-top:  30px;
}

.map {
  margin-bottom: 30px;
  display: none;
}

.map img{
  display: inline-block;
  margin: 20px;
  cursor: pointer;
  transition: 0.4s all;
  transform: scale(1);
  position: relative;
}

.map-2 img{
  margin: 0px;
  margin-bottom: 25px;
}

.map-3 img{
  width: 150px;
  margin: 10px;
}

.map img:hover{
  transform: scale(1.1);
}

.win {
  background: url('images/win.jpg') no-repeat center center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  /*display: grid;*/
  display: none;
  justify-content: center;
  align-items: center;
}

.win img {
  display: block;
}
</pre></body></html>