* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
}

html, textarea {
    font-family: Arial;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

label, button, input[type="submit"], input[type="reset"] {
    cursor: pointer;
}

input[type="submit"], input[type="reset"], button {
    text-transform: uppercase;
    background-color: rgb(46, 41, 8);
    border: none;
    border-radius: 4px;
    color: rgb(242, 167, 1);
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    float: right;
    margin-top: 5px;
}
input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(top left, rgba(255, 255, 255, 0.5), transparent);
    background-image: -moz-linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), transparent);
    background-image: -ms-linear-gradient(top left, rgba(255, 255, 255, 0.5), transparent);
    background-image: -o-linear-gradient(top left, rgba(255, 255, 255, 0.5), transparent);
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.5), transparent);
}

textarea {
    overflow: auto;
}

/* Only override scrollbars within the <body>; leave the ones for the whole page alone. */
body ::-webkit-scrollbar {
    width: 12px;
}

body ::-webkit-scrollbar-track {
    background-color: rgb(17, 17, 17);
}

body ::-webkit-scrollbar-thumb {
    background-color: rgb(112, 112, 112);
    border-left: 1px solid rgb(126, 126, 126);
    border-top: 1px solid rgb(126, 126, 126);
}
