.hide {
    display: none;
}

.plane {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 80px;
    height: 40px;
    border: 2px solid red;
    border-bottom-left-radius: 45px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 15px;
    background-color: lightseagreen;
}

.message {
    position: absolute;
    top: 2%;
    left: 20%;
    width: 60%;
    text-align: center;
    font-size: 40px;
    background-color: orange;
}

.score {
    position: absolute;
    top: 2%;
    left: 20%;
    width: 60%;
    text-align: center;
    font-size: 40px;
    background-color: orange;
}

.gameArea {
    height: 95vh;
}

.bomb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    background-color: red;
    text-align: center;
    font-size: 1.5em;
}


.base {
    position: absolute;
    bottom: 0px;
    width: 50px;
    height: 100px;
    color: white;
    background-color: black;
}

