p {
    color:black;
    font-size: 1.3em;
    text-align: center;
    font-family: monospace;
    background-color: #ff9900;
    border-radius: 10px;
}
#display {
    color:white;
}

#buttonDisplay {
    text-align: center;
    display: grid;
    grid-template-columns: 32vw 32vw 32vw; 
    grid-template-areas: "wx stem haz";
}

.butlayer {
    width: 30vw;
    height: 5em;
    font-size: 1em;
}

#wx {
    grid-area: wx;
    animation: fadeIn 2s;
}

#stem {
    grid-area: stem;
    animation: fadeIn 3s;
}

#haz {
    grid-area: haz;
    animation: fadeIn 4s;
}

