/*import*/
@font-face{
  font-family: gamepaused;
  src: url(/fonts/gamepaused.otf);
  }
@font-face {
  font-family: bytebounce;
  src: url(/fonts/bytebounce.ttf);
  }

/* animations */
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

/*elements*/
body{
  background-image: url("/img/startile3.png");
  background-repeat: repeat;
  }

h1 {
  z-index: 1;
  position: fixed;
  display: block;
  font-family: gamepaused;
  font-size: 90px;
  color: white;
  text-shadow: 3px 3px #AA32CD, 6px 6px #5C32CD;
  margin-top: 20px;
  margin-left: 40px;
  }

.alien {
  z-index: 5;
  position: fixed;
  display: block;
  margin-top: 140px;
  margin-left: -60px;
  width: 400px;
  transform: scaleX(-1);
  }

.sun{
  z-index: 1;
  position: fixed;
  display: block;
  margin-top: 150px;
  margin-left: 930px;
  width: 250px;
  }
  
.sun:hover{
  animation: spin 5000ms infinite linear;
  }
  
.mercury{
  z-index: 3;
  position: fixed;
  display: block;
  margin-top: 30px;
  margin-left: 910px;
  width: 100px;
  }

.mercury:hover{
  animation: spin 5000ms infinite linear;
  }
  
.venus{
  z-index: 3;
  position: fixed;
  display: block;
  margin-top: 80px;
  margin-left: 730px;
  width: 125px;
  }

.venus:hover{
  animation: spin 5000ms infinite linear;
  }
  
.earth{
  z-index: 3;
  position: fixed;
  display: block;
  margin-top: 210px;
  margin-left:630px;
  width: 150px;
  }
  
.earth:hover{
  animation: spin 5000ms infinite linear;
  }

.mars{
  z-index: 3;
  position: fixed;
  display: block;
  margin-top: 370px;
  margin-left: 740px;
  width: 120px;
  }

.mars:hover{
  animation: spin 5000ms infinite linear;
  }
  
.pluto{
  z-index: 3;
  position: fixed;
  display: block;
  margin-top: 450px;
  margin-left: 910px;
  width: 80px;
  }
  
.pluto:hover{
  animation: spin 5000ms infinite linear;
  }
  
.bubble {
  z-index: 1;
  position: fixed;
  margin-top: 160px;
  margin-left: 330px;
  background: #ffffff;
  color: black;
  font-size: 18px;
  font-family: gamepaused;
  width: 220px;
  height: auto;
  box-shadow: 3px 3px #AA32CD, 6px 6px #5C32CD;
  border-radius: 10px;
  padding: 10px;
}

.bubble:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-radius: 3px;
  border-color: transparent transparent #ffffff transparent;
  top: 30%;
  left: -15px;
  margin-top: -10px;
}

.devdate {
  font-family: bytebounce;
  padding-left: 15px;
  font-size: 30px;
  line-height: 0;
  }
  
.devloglist {
  line-height: 15px;
  }
