/* CSS is how you can- hey why are you here go back to the wiki! */

body {
background-color: black;
color: gray;
font-family: Verdana;
cursor: url("https://roblox-fnaf-pizzeria-2014-wiki.neocities.org/cursors/normal.png"), auto;
}

/* Make all text gray */
h1, h2, h3, h4, h5, h6,
p,
li,
a,
span,
div {
color: gray;
}

/* Old Roblox-style buttons */
button {
font-family: Arial, sans-serif;
font-size: 14px;
font-weight: bold;

   
/* White button text */
color: white;

/* Dark gray background */
background-color: #4a4a4a;

border: 1px solid #2f2f2f;
border-top-color: #6a6a6a;
border-left-color: #6a6a6a;

padding: 4px 12px;
border-radius: 3px;

cursor: url("https://roblox-fnaf-pizzeria-2014-wiki.neocities.org/cursors/normal.png"), pointer;
   

}

/* Hover: lighter gray */
button:hover {
background-color: #7a7a7a;

   
cursor: url("https://roblox-fnaf-pizzeria-2014-wiki.neocities.org/cursors/hover.png"), pointer;
   

}

/* Clicked: Roblox blue */
button:active {
background-color: #0066cc;

   
border-top-color: #004c99;
border-left-color: #004c99;
border-bottom-color: #66a3ff;
border-right-color: #66a3ff;

transform: translateY(1px);
   

}
