/* You can add global styles to this file, and also import other style files */
@font-face {
    font-family: 'w95fa';
    src: url('/assets/fonts/w95fa.woff2') format('woff2'),
         url('/assets/fonts/W95FA.ttf') format('ttf'),
         url('/assets/fonts/w95fa.woff') format('woff');
    font-display:swap;
}
* {
    margin: 0;             /* Remove default margin */
    padding: 0;            /* Remove default padding */
    box-sizing: border-box; /* Ensure padding and border don't affect the height calculation */
  }
body, * {
    -webkit-user-select: none; /* Safari */ /* Firefox */ /* Internet Explorer/Edge */
    user-select: none; /* Standard */
}
body {
    font-family: 'w95fa';
    cursor: url('Cursor.PNG'), auto;
    margin: 0;
    padding: 0;
    height: 100vh;  /* Lock the height of the body to the viewport height */
    overflow: hidden;  /* Prevent scrolling on the body */
}
button {
    /* background-color: #c0c0c0; */
    background-color: #c0b295ff;
    border-top: 3px solid #fbe4b5ff;   /* Set the top border to white */
    border-left: 3px solid #fbe4b5ff;  /* Set the left border to white */
    border-bottom: 3px solid #7e7768ff; /* Set the bottom border to black */
    border-right: 3px solid #7e7768ff; 
    padding: 2px 5px;
    font-size: 14px;
    cursor: url('/assets/cursors/Pointer.PNG'), auto;
    color: #16293eff;
    font-family: inherit;
  }
/* button {
    font-family: inherit;
    font-size: 12px;
    padding: 5px 10px;
    background: linear-gradient(to top left, #e1e1e1, #ffffff);
    background-color: #a0a0a0;
    border: 2px solid #a0a0a0;
    border-radius: 2px;
    box-shadow: inset 1px 1px 3px #ffffff, inset -1px -1px 3px #a0a0a0;
    color: black;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: all 0.1s ease;
}

button:hover {
    background: linear-gradient(to top left, #d0d0d0, #f0f0f0);
    border-color: #808080;
    box-shadow: inset 1px 1px 3px #ffffff, inset -1px -1px 3px #808080;
}

button:active {
    background: #a0a0a0;
    border-color: #606060;
    box-shadow: inset 1px 1px 3px #ffffff, inset -1px -1px 3px #404040;
    transform: translateY(2px);
}

button:disabled {
    background: #d0d0d0;
    border-color: #808080;
    color: #a0a0a0;
    cursor: not-allowed;
    box-shadow: none;
}  */

/*# sourceMappingURL=styles.css.map*/