
html{font-size: 16px;}

/*STANDARD BUTTON */
.stdbutton {
    padding: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #686868;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    background-color: #F0F0F0;
    transition-duration: 0.1s;
    color: black;

}
.stdbutton:hover {border-width: 3px}
.stdbutton:active {transform: translateY(2px);}
.stdbuttonon {
    padding: 0px;
    border-style: solid;
    border-width: 2px;
    border-color: #686868;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    background-color: #93c2f1;
    transition-duration: 0.1s;
    color: white;

}
.stdbuttonon:hover {border-width: 3px}
.stdbuttonon:active {transform: translateY(2px);}