@import url('https://fonts.googleapis.com/css?family=Roboto');
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ground {
  position: absolute;
  background-color: #E7C496;
  width: 100%;
  height: 45%;
  bottom: 0;
}
.river {
  position: absolute;
  bottom: 45%;
  height: 15%;
  width: 100%;
  background-color: #204053;
  transition: opacity .4s ease;
}
.sky {
  top: 0;
  height: 40%;
  width: 100%;
  position: absolute;
  background-color: dodgerblue;
  cursor: pointer;
  transition: .4s ease background-color;
  overflow: hidden;
}
.tent {
  position: absolute;
  left: 50%;
  bottom: 60%;
  cursor: pointer;
  height: auto;
  z-index: 1;
  width: 30%;
  height: auto;
  transform: translate(-50%);
}
.boat {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 1%;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}
.campfire {
  position: absolute;
  bottom: 58%;
  height: auto;
  left: 15%;
  width: 12%;
  z-index: 1;
  cursor: pointer;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
}
.bear {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  width: 10%;
  height: auto;
  z-index: 1;
}
.sun {
  width: 10%;
  position: absolute;
  padding: 1%;
  height: auto;
}
.message {
  position: absolute;
  bottom: 5%;
  transform: translate(-50%);
  left: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 20px;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  transition: opacity .4s ease;
  z-index: 20;
}
.dark-layer {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .4s ease;
  opacity: 0;
}
.telescope {
  width: 20%;
  height: auto;
  position: absolute;
  right: 7%;
  cursor: pointer;
  top: -30%;
  z-index: 2;
}
.imgx {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px;
  width: 30px;
  color: #fff;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  z-index: 11;
  font-size: 30px;
  cursor: pointer;
}
