html {
  background: url(../img/spaceman-real-2.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body{}
.launch-box{
  /* border:1px solid blue; */
  height: calc(100vh - 00px);
  box-sizing: border-box;
  text-align: center;

}
.countdown-box{
  height: 50%;
  position: relative;
  /* z-index: -3; */
  top: 10%;
  align-items: center;
  justify-content: center;
}
.countdown-box input {

  width: 120px;
  background-color: black;
  border: 4px solid limegreen;
  color: limegreen;
  text-align: center;
  font-size: 6em;
  padding: 0;
  min-height: 130px;
  min-width: 130px;
}
.rocket-img-box{
display:inline-flex;
}

img.rocketpng{
  display: block;
  z-index:1000;
  object-fit: none;
  object-position: 50% 50%; /* default value: image is centered*/
  object-position: 0 0; /* positioned top left of the content box */

}

.target {
    margin: 2em;
    padding: 2em 3em;
    background-color: #FC6E51;
    border-color: #FC6E51;
    width: 75px;
}

#test {display: none;}
button{color: white; background: rgba(0, 0, 0, 0.5); width: 100px;
    padding: 0px;}
    button:hover {color: limegreen; background: rgba(0, 0, 0, 0.5); }

.btn-abort {display: none;
  color: limegreen;
  background-color: black;
  opacity: 1;
  font-size: 1.2rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  text-align: center;
  border: 1px solid lime;}

  .btn-green {
    color: limegreen;
    background-color: black;
    opacity: 1;
    font-family: Electrolize, sans-serif;
    font-size: 1.5rem;
    flex-wrap: wrap;
    padding: 0 10px;
    text-align: center;
    border: 1px solid lime;
  }
  .glow {
    font-size: 2em;
    font-family: electrolize;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }

  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }

    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
  }
