* {
  box-sizing: border-box;
}

body {
  margin: 0;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  background-color: black;
  font-family: 'Press Start 2P', cursive;
}

#instructionContainer {
  position: absolute;
  color: #FFFFFF;
  transform: translate(-50%, -50%);
  top: 90%;
  left: 50%;
}

.instructionText {
  z-index: 100;
  text-align: center;
}

#gameContainer {
  width: 1000px;
  height: 500px;
  background: pink;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  outline: 10px solid #FFFFFF;
}

#character {
  position: absolute;
  transform: translate(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

#character img {
  height: 100px;
}

#gameBackground {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#imageBackground {
  position: relative;
  height: 100%;
  float: left;
  margin-left: 0;
}

#movingBackground {
  height: 100%;
  position: relative;
}

.foreground {
  position: absolute;
  z-index: 1;
}

#youtube {
  width: 460px;
  height: 267px;
  top: 125px;
  left: 427px;
}

#youtube img {
  width: 100%;
  height: 100%;
}

#ninegag {
  width: 315px;
  height: 182px;
  top: 212px;
  left: 1175px;
}

#ninegag img {
  width: 100%;
  height: 100%;
}

#dog {
  width: 150px;
  bottom: 0;
  left: 150px;
}

#dog img {
  width: 100%;
}

#spotify {
  width: 75px;
  top: 55px;
  left: 1824px;
}

#spotify img {
  width: 100%;
}

#facebook {
  width: 60px;
  top: 251px;
  left: 1707px;
}

#facebook img {
  width: 100%;
}

#block{
  width: 60px;
  top: 150px;
  left: 40px;
}

#block img {
  width: 100%;
}

#textContainer {
  position: absolute;
  z-index: 100;
  height: 50px;
  background: #c8c8c8;
  font-size: 1rem;
  color: ##626262;
  transform: translate(-50%, -10%);
  top: 10%;
  left: 50%;
  padding: 15px;
}

.interactiveText {
  text-align: center;
}

.changeText {
  font-size: 0.5rem;
  text-align: center;
  margin-top: 2px;
}

.blink {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blinker;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

@-webkit-keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

@keyframes blinker {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

.doggos {
  z-index: -100;
  display: none;
}

#doggo0 {
  height: 200px;
}

#doggo1 {
  height: 200px;
}

#doggo2 {
  height: 200px;
}
