body {
  background-color: red;
  color: white;
  font-family: Verdana;
  background-image: url('../images/starfield_background.jpeg');
}

.centerItem {
  text-align: center;  
}

.hugeText {
  font-size: 120px;
    font-weight: bold;
}

.fullWidth {
  width: 100%;  
}

.blackHoleBackground {
  background-image: url('../images/black_hole.jpg');
}

/* Style for <a> tags */
a {
  color: #FF0;  /* Bright Yellow */
  text-decoration: none;  /* Remove underline */
  font-weight: bold;  /* Make the text bold */
}

/* Hover effect: changes color when mouse is over the link */
a:hover {
  color: #0FF;  /* Bright Cyan */
  text-decoration: underline;  /* Add underline on hover */
}

/* Active link: when the link is clicked */
a:active {
  color: #F0F;  /* Bright Magenta */
  text-decoration: underline;
}

/* Visited link color */
a:visited {
  color: #0F0;  /* Bright Green */
}
