/* project2.css*/
/* YUMMY javascript css button stuff */

html {
    font-family: courier;
    text-align: center;
    background-color: antiquewhite;
}
p {
    font-family: arial;
    text-align: center;
}
p#guesses {
    font-family: courier;
    text-align: center;
}
p#floor {
    text-align: center;
    float: bottom;
}
p#pScore, #res {
    font-family: courier;
    text-align: center;
}
h1 {
    font-family: courier;
}
h1#center {
    text-align: center;
}
h3 {
    text-align: center;
}
h4 {
    text-align: center;
}
div#totalArea, #computerArea {
    text-align: center;
    font-family: courier;
}
div#controlButtons {
    text-align: center;
    font-family: courier;
}
.button {
    /*background-color: #4CAF50;  */ /*green*/
    background-color: #FFD34E; /* bronze*/
    border: 2px solid #FFD34E;
    /*color: #2c8fbd;*/ /* blue */
    color: #333;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
	letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer; 
    transition: all 0.4s ease-in-out;
}
.button:hover {
	background: #fff;
}
