/* ===========================================================
   BASE
   Global reset, scrollbar styling, and page-level defaults
   =========================================================== */


/* ---- Reset & global element defaults ---- */
* {
    font-family: "Tahoma", "MS Sans Serif", Arial, sans-serif;
    box-sizing: border-box;
}

p {
    margin: 2px 0;
    font-size: 11px;
}

.icon {
    width: 200px;
    height: 300px;
}


/* ---- Windows-98-style scrollbar (WebKit) ---- */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #c0c0c0;
    border: 1px solid #dfdfdf;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #dfdfdf 0%, #c0c0c0 50%, #808080 100%);
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #dfdfdf 0%, #c0c0c0 50%, #606060 100%);
}


/* ---- Scrollbar (Firefox) ---- */
* {
    scrollbar-color: #c0c0c0;
}


/* ---- Page shell ---- */
html,
body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    position: relative;
    cursor: url("../images/cursor.cur"), auto;

    background-image: url(/images/hawaii.png);
    background-position: center;
    background-size: cover;
    /* background: #008080;
    background-image: 
        repeating-linear-gradient(45deg, #008080 0px, #008080 2px, #00a0a0 2px, #00a0a0 4px),
        repeating-linear-gradient(-45deg, #008080 0px, #008080 2px, #00a0a0 2px, #00a0a0 4px);
    background-size: 100% 100%; */
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 10px 0 56px;
}
