.spaceship-lights {
    border-bottom: 100px solid #0000CC;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    height: 0;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.spaceship-lights-2 {
    border-bottom: 150px solid #0000CC;
    border-left: 170px solid transparent;
    border-right: 170px solid transparent;
    height: 0;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.lights {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.lights.on {
  background: cyan;
  box-shadow: 0 0 15px 5px cyan;
  transition: all 0.3s ease-in-out;
}
.upper-lights {
  top: -15px;
}
#upper-1{
  left: 5%;
}
#upper-2{
  right: 5%;
}
.front-lights, .rear-lights {
  bottom: -95px;
}
#front-1 {
  left: -15%;
}
#front-2 {
  right: -15%;
}
#rear-1 {
  left: -20%;
}
#rear-2 {
  right: -20%;
}
.wing-lights {
  bottom: -115px;
}
#wing-1 {
  left: -85%;
}
#wing-2 {
  right: -85%;
}
#lower-2, #lower-3 {
  bottom: -135px;
}
#lower-2 {
  left: -75px;
}
#lower-3 {
  right: -75px;
}
#lower-1 {
    left: -18px;
    bottom: -70px;
}
#intern {
    background: #000;
    height: 35px;
    width: 125px;
    top: 10px;
    left: 8px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
#intern.on {
  box-shadow: 0 0 15px 5px cyan;
  background: cyan;
  transition: all 0.3s ease-in-out;
}
