/* This sets the background color of the entire page to a dark brown color */
body {
background-color: #282828;
}

/* This sets the text color to a light yellow */
p, h1, h2, h3, h4, h5, h6 {
color: #fbf1c7;
}

/* This sets the link color to a light purple */
a {
color: #8ec07c;
}

/* This sets the link color to a dark purple when hovered over */
a:hover {
color: #689d6a;
}

/* This sets the background color of all buttons to a dark red */
button, input[type="submit"] {
background-color: #fb4934;
color: white;
}

/* This sets the background color of all buttons to a light red when hovered over */
button:hover, input[type="submit"]:hover {
background-color: #cc241d;
}

/* This sets the background color of all input fields to a light gray */
input[type="text"], input[type="password"], textarea {
background-color: #928374;
}

/* This sets the border color of all input fields to a dark gray */
input[type="text"], input[type="password"], textarea {
border: 1px solid #504945;
}

/* This sets the background color of all tables to a dark gray */
table {
background-color: #504945;
}

/* This sets the background color of all table rows to a light gray */
tr {
background-color: #928374;
}

/* This sets the background color of all table cells to a dark brown */
td {
background-color: #282828;
}

/* This sets the background color of all code blocks to a dark gray */
code {
background-color: #504945;
}

/* This sets the background color of all pre blocks to a dark gray */
pre {
background-color: #504945;
}

/* This sets the background color of all blockquotes to a light gray */
blockquote {
background-color: #928374;
}
