body {
    background-color: black
}   

.colorize {
    display:inline-block;
    color: blue;
}
.center {
    display: block;
    margin: auto;
    text-align: center;
}

.square-container {
        display: block;
        margin: auto;
        background-color: black;
        color: white;
        font-family: monospace;
        width: 700px;
        height: 500px;
        border: 4px solid white;
        padding: 10px; 
        text-align: left; 
        align-items: center; 
        justify-content: center;
        box-sizing: border-box;
    }


.promptb {
    display: block;
    background-color: black;
    color: white;
    border: dashed;
    right: 500px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    
    
}

.promptb:hover {
    background-color: white;
    color: black
    
}