/* styles.css */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

canvas {
    border: 2px solid #fff;
    border-radius: 10px;
/*    width: 90%;
    height: 90%;
*/}


.power-up {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: yellow; /* Default color, can be changed per type */
    border-radius: 50%;
}

.power-up.shield {
    background-color: blue;
}

.power-up.rapidFire {
    background-color: red;
}

.power-up.speedBoost {
    background-color: green;
}

