body {
  background-color: #360036; /* Set the background color */
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center;     /* Vertically center the content */
  min-height: 100vh;      /* Ensure the body takes up full viewport height */
  margin: 0;              /* Remove default body margins */
  overflow: hidden;       /* Prevent scrollbars */
}

#container {
  text-align: center;  /* Center the text within the container */
}

#ideas {
  font-size: 100px;     /* Adjust font size as needed */
  font-weight: 300;
  color: white;          /* Set the text color */
  font-family: "Faculty Glyphic", serif; /* Choose a font */
}