@font-face
{
    font-family: quickPixel;
    src: url('QuickPixel.ttf');
}

div.relative {
    position: relative;
    width: 750px;
    height: 750px;
    /*border: 3px solid lightgray;*/
}

div.absolute {
    position: absolute;
    top: 100px;
    right: 100px;
    width: 300px;
    height: 300px;
}
div.absoluteinstructions {
    position: absolute;
    top: 25px;
    right: 50px;
    width: 400px;
    height: 450px;
}
div.onleftside {
    position: absolute;
    top: 0px;
    right: 400px;
    width: 80px;
    height: 100px;
}
div.onrightside {
    position: absolute;
    top: 0px;
    left: 400px;
    width: 80px;
    height: 100px;
}

p.centeredbig {
    text-align: center;
    font-weight: bold;
    line-height: 30px;
    font-family: 'Courier New';
    font-size: 35px;
    color: #4A597F;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
p.instructionText {
    text-align: center;
    font-weight: bold;
    line-height: 15px;
    font-family: 'Arial';
    font-size: 16px;
    color: #4A597F;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
p.scoretext {
    text-align: right;
    font-weight: bold;
    line-height: 20px;
    font-size: 25px;
    color: gray;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
p.gamescoretext {
    text-align: left;
    font-weight: bold;
    line-height: 20px;
    font-size: 25px;
    color: gray;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
p.centered {
    text-align: center;
    line-height: 15px;
    font-family: 'Courier New';
    font-weight: bold;
    font-size: 20px;
    color: #4A597F;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
button {
    background-color: #7197ff;
    border: 3px solid #4A597F;
    padding: 16px 32px;
    width: 200px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;

    font-family: 'Courier New';
    font-weight: bold;
    color: #4A597F;

}
button:hover {
    background-color: white;
}
button:active {
    background: #7c8786;
}
button:focus {
    outline:0;
}