body {
background-color: #000000;
}


h1 {
color:violet;
}



footer {
  width: fit-content;         /* shrink footer to its content size */
  margin: 0 auto;             /* center footer horizontally on page */
  font-family: monospace;     /* set font for footer text */
  font-size: 1rem;            /* set font size for footer text */
}

#footer {
  display: flex;              /* lay out img + div in a row */
  align-items: center;        /* center img + div vertically as a pair */
  gap: 1rem;                  /* space between img and div */
}

#footer img {
  height: 4rem;                /* set favicon height */
}

#footer div {
  display: flex;               /* stack the <a> tags in a column */
  flex-direction: column;      /* force vertical stacking */
  justify-content: space-between; /* push first/last <a> to top/bottom */
  height: 4rem;                 /* match favicon height for alignment */
}

#privacy {
display: none;               /* hide privacy text by default */
color: #FF00AA;               /* set link text color */
font-size: 0.7rem;
cursor: default; 
line-height:2;
white-space: nowrap; 
text-align: center; 
}

footer a {
  text-decoration: none;       /* remove underline from links */
  color: #FF00AA;               /* set link text color */
  cursor: default;              /* remove hand cursor from links */
}