:root {
    --butterscotch: #e98d4e;
    --butterscotch-light: #fdc977;
    --carbon-black: #222222;
    --beautiful-white: #f1f2f6;
}
a {
    color: var(--butterscotch);
    text-decoration-line: underline;
}
body {
    background-image: url("https://file.garden/aNEPg4Wwkwe5knVf/grphcs/spooky-cats.webp");
    background-color: var(--beautiful-white);
    background-attachment: local;
    font-family: nintendo-ds;
    font-size: x-large;
    color: var(--carbon-black);
}
@font-face {
    font-family: "nintendo-ds";
    src: url("https://file.garden/aNEPg4Wwkwe5knVf/fnts/nintendo-ds-bios.ttf") format("truetype");
}
table {
    width: 80%;
    margin: 0 auto; /* Center the table */
    border-collapse: collapse;
}

th, td {
    border: 2px solid;
    border-color: var(--carbon-black);
    padding: 10px;
    text-align: center;
    background-color: white; /* Header and body background color */
}

tbody td {
    text-align: left; /* Align body text to the left */
    background-color: white; /* Body background color */
}

tfoot td {
    background-color: var(--butterscotch); /* Footer background color */
    text-align: center; /* Center footer text */
}