#headerDiv{
  position: absolute;
  width: 40%;
  text-align: center;
  left: 30%;
  top: 25px;
  background-color: #4d4d4d;
  border-radius: 20px;
  z-index: 1;
}

.headerTxt{
  color: white;
  font-weight: 350;
}
#notFinished{
  position: absolute;
  width: 140px;
  height: 30px;
  font-size: 1.4em;
  line-height: 30px;
  border-radius: 10px;
  transform: rotate(-20deg);
  top: 10px;
  left: -20px;
  box-shadow: #000000 3px 3px 5px;
  background-color: red;
}

#speed{
    position: absolute;
    transform: rotate(-90deg);
    left: -100px;
    top: 460px;
}

input[type=range] {
    height: 0px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 400px;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #50555C;
    background: #50555C;
    border-radius: 14px;
    border: 0px solid #000000;
  }
  input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 60px;
    width: 30px;
    border-radius: 12px;
    background: #ff0728;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3px;
    margin-top: -23px;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #50555C;
  }
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #50555C;
    background: #50555C;
    border-radius: 14px;
    border: 0px solid #000000;
  }
  input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 20px;
    width: 40px;
    border-radius: 12px;
    background: #529DE1;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
    background: #50555C;
    border: 0px solid #000000;
    border-radius: 28px;
    box-shadow: 1px 1px 1px #50555C;
  }
  input[type=range]::-ms-fill-upper {
    background: #50555C;
    border: 0px solid #000000;
    border-radius: 28px;
    box-shadow: 1px 1px 1px #50555C;
  }
  input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 20px;
    width: 40px;
    border-radius: 12px;
    background: #529DE1;
    cursor: pointer;
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #50555C;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #50555C;
  }

.displayClass{
  position: absolute;
  width: 250px;
  height: 250px;
  border: solid #2D383A 2px;
  right: 20px;
  bottom: 20px;
  border-radius: 20%;
  background-color: #50555c9a;

}

#displayData{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.displayClass>div>div{
  font-size: 1.2em;
  position: relative;
  margin: 20px 0px 0px 20px;
  color: white;
}

.mapClass{
  position: absolute;
  width: 200px;
  height: 200px;
  border: solid #2D383A 2px;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  background-image: url('../Images/minimap.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150%;
  background-position-x: 50%;
  background-position-y: 50%;
}

#miniRocket{
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: white;
}

.earthCenter{
  position: absolute;
  width: 1px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0);
}