/* Jello Layout (centered box with fixed width) */
.container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto; 
  background-color: #000000; 
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px red; 
}

/* Element */
p {
  font-family: Arial, sans-serif;
  color: #ff0000; /* red text */
  line-height: 1.6;
}

/* Class */
.highlight {
  color: #ff3333; 
  font-style: italic;
}

/* id */
#mainBody {
  background-color: #000000; /* black background for page */
}
