@import url('https://fonts.googleapis.com/css?family=Orbitron&display=swap');

body{
    font-family: 'Orbitron', sans-serif;
}

.gamePlayArea {
    width: 800px;
    height: 600px;
    background-color: indigo;
    overflow: hidden;
    text-align: center;
}

.dashboard {
    color: white;
    font-size: 2em;
}

.dashboard > div {
    width: 48%;
    text-align: right;
    display: inline-block;
}

.progress {
    height: 21px;
    width: 300px;
    background-color: #333;
    border-radius: 25%;
    border: 1px solid white;
}

.progress-bar {
    background-color: greenyellow;
    width: 100%;
    height: 20px;
    border-radius: 25px;
}

 #gameOverEle {
     position: absolute;
     height: 300px;
     width: 600px;
     left: 100px;
     background-color: #333;
     color: white;
     font-size: 2em;
     padding: 15px 0px 15px 0px;
     border: 1px solid white;
     
 }

 .btnStart {
     padding: 15px;
     border-top: 1px solid white;
     border-bottom: 1px solid white;
     background-color: blueviolet;
     font-size: 3em;
 }

 #container {
     background-color: black;
     width: 90%;
     height: 95%;
     border: 2.5% solid gray;
     padding: 5%;
 }

 .base {
     border-radius: 50%;
     position: absolute;
     width: 40px;
     height: 40px;
     left: 380px;
     top: 280px;
     background-color: #333;
     color: white; 
     margin: auto;
 }

 .box {
    transform: rotate(-130deg);
    position: absolute;
    left: 384px;
    top: 284px;
    border: 1px solid  white;
    width: 30px;
    height: 30px;
    background-color: indigo;
    border-radius: 50%;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
 }

 .turet {
     position: absolute;
     height: 100%;
     width: 40%;
     margin-left: 30%;
     bottom: 35%;
     border-radius: 30%;
     background-color: darkgray;
 }

 .fireme {
     position: absolute;
     top: 0;
     left: 0;
     background-color: rgba(163, 163, 122, 0.8);
     border-radius: 50%;
     z-index: 1;
 }

 .baddy {
     position: absolute;
     padding: 5px;
     text-align: center;
     border: 1px dotted #555;
     background-color: rgba(red, green, blue, 0.1);
     border-radius: 25%
 }