@keyframes pop {

    from {
        background-color: rgba(0, 0, 0, 0);
        width: 0px;
        height: 0px;
    }
    to {
        background-color: rgba(0, 0, 0, 0.5);
        width: 320px;
        height: 42px;
    }
}

@keyframes textPop {

    from {
        color: rgba(0, 0, 0, 0)
    }
    to {
        color: rgba(255, 255, 255, 1.0);
    }
}

#message {
    margin: 10px;

    font-size: 14pt;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25em;
    color: rgba(255, 255, 255, 1.0);
    width: 0px;
    height: 0px;
    animation-name: pop;



    top: 25%;

    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-duration: 1s;
}

#textMessage {
    margin:  10px;
    animation-name: textPop;
    animation-delay: 2s;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;

    font-family: monospace;
    color: rgba(0, 0, 0, 0);
}
