body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
}

#container {
    font-family: 'Courier New', Courier, monospace;
    border: 2px solid rgb(255, 255, 255);
    padding: 20px;
    color:rgb(255, 255, 255);
    height: 15rem;
    width: 15rem;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#buttons button{
    margin-top: 10px;
    align-items: center;
    font-size: 1rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
}
#start{
    color: black;
    background-color:rgba(94, 255, 0, 0.377)
}
#stop{
    background-color: brown;
}
#reset{
    background-color: blueviolet;
}
#watch{
    font-size: 2rem;
}