/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
    .win95-button {
        background-color: #c0c0c0;
        border: 2px outset #ffffff; /* White for top/left */
        border-right-color: #808080; /* Darker gray for right/bottom */
        border-bottom-color: #808080;
        font-family: 'MS Sans Serif', 'Helvetica', sans-serif;
        font-size: 15px;
        padding: 7px 20px;
        cursor: pointer;
        outline: none; /* Remove default outline */
    }

    .win95-button:active {
        border: 2px inset #808080; /* Darker gray for top/left when active */
        border-right-color: #ffffff; /* White for right/bottom when active */
        border-bottom-color: #ffffff;
    }