body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

#neonCanvas {
    display: block;
    border: 1px solid #333;
}

#neonTextInput {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 24px;
    background-color: #333;
    color: #0f0;
    border: 2px solid #0f0;
    box-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0, 0 0 40px #0f0;
    outline: none;
    text-align: center;
    width: 80%;
    max-width: 500px;
}

#redrawButton {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 24px;
    background-color: #333;
    color: #0f0;
    border: 2px solid #0f0;
    box-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0, 0 0 40px #0f0;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#redrawButton:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 20px #0f0, 0 0 40px #0f0, 0 0 60px #0f0;
}