#landscape {
  height: 500px;
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: none;
}

#road {
  height: 100%;
  width: 600%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-left: 0;
  transition: margin 500ms;
}

.street-lamp {
  width: 40px;
  margin: auto 30px 0;
  position: relative;
}
.street-lamp img {
  max-width: 100%;
  position: relative;
  z-index: 10;
}
.street-lamp::before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.5);
  border-radius: 100%;
  z-index: 5;
  cursor: pointer;
}
.street-lamp::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  box-shadow: 0px 0px 45px #fff;
  z-index: 15;
  cursor: pointer;
}
.street-lamp.is-turned-off:before,
.street-lamp.is-turned-off:after {
  display: none;
}

#sky {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #122730;
  background: linear-gradient(180deg,#122730 65%, #2C8291 100%);
  overflow: hidden;
}

#fog {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #595952;
  position: absolute;
  top: 0;
  left: 0;
}

.star {
  position: absolute;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0px 0px 20px #fff;
}

#shooting_stars {
  position: absolute;
  top: -10px;
  margin-left: 10px;
  z-index: 100;
}
.shooting_star {
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 50%;
  top: 0;
  left: 0;
  position: absolute;
}
.shooting_star:nth-child(2){
  left: 60px;
  animation-delay: 4s !important;
}
.shooting_star:nth-child(3){
  left: 144px;
  animation-delay: 7s !important;
}
.shooting_star::before {
  content: '';
  height: 10px;
  width: 150px;
  display: block;
  position: absolute;
  right: calc(100% - 10px);
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 10% 10% 10% 10% / 60% 60% 60% 60%;
}

#arrows {
  display: flex;
  justify-content: center;
}
#arrows .arrow {
  height: 50px;
  width: 50%;
  font-size: 40px;
  text-align: center;
  cursor: pointer;
}

@keyframes shining {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes shooting-star {
  0% {
    transform: scale(1) rotate(30deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.5) rotate(30deg) translateX(500px);
    opacity: 0;
  }
}

@media (min-width: 992px) {
  #road {
    width: 500%;
  }
}

@media (min-width: 1400px) {
  #road {
    width: 300%;
  }
}