body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
}

#home-button {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: "Electrolize", serif;
}

#home-button-txt{
    color:#ffffff;
    text-decoration: none;
    font-family: "Electrolize", serif;
}

#game-container {
    text-align: center;
    background-color: black;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: white;
}

#game-box {
    width: 920px; /* Increased width to fit 92 characters */
    height: 30px;
    margin: 10px 0;
    padding: 5px;
    resize: none;
    font-family: monospace;
    font-size: 16px;
    white-space: nowrap;
    overflow-x: hidden;
    color:white;
    background-color:black;
}

#status {
    font-weight: bold;
    margin: 10px 0;
    color:white;
    font-family: "Electrolize", serif;
}

button {
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Electrolize", serif;
}

button:hover {
    background-color: #0066ff;
}

#title {
    color:white;
    font-family: "Electrolize", serif;
}

#score{
    color: white;
    font-family: "Electrolize", serif;
}
#scoreboard{ 
    color: white;
    font-family: "Electrolize", serif;
}
#dev-tools {
    display: none;
    background-color: black;
    padding: 10px;
    margin-top: 20px;
    font-family: "Electrolize", serif;
    color: white;
}

#clear-board{
    color: white;
    font-family: "Electrolize", serif;
}
#status, #score, #scoreboard, #active-powerup{
    font-family: "Electrolize", serif;
    color: white;   
}