/* Home Page Specific Styles */

#main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers block horizontally */
  justify-content: flex-start;
  padding: 20px;
  text-align: center;
}

/* Main heading */
#main-content h2 {
  color: #99ccff;
  font-size: 32px;        /* bigger headline */
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* General content */
#main-content p {
  font-size: 18px;        /* bump up size */
  line-height: 1.6;
  color: #fefefe;
  margin: 12px 0;
  text-align: center;
}

/* Links */
#main-content a {
  color: #99ccff;
  font-size: 18px;        /* same size as body text */
  text-decoration: underline;
}
#main-content a:hover {
  color: #ffffff;
}

/* Notices */
#main-content p.notice-red {
  color: #ff4444;
  font-size: 22px;
  font-weight: bold;
  margin: 25px 0;
  text-align: center;
}

#main-content p.notice-yellow {
  color: #ffcc00;
  font-size: 22px;
  font-weight: bold;
  margin-left: 15px;
}


/* Cash block (image + text side by side) */
.cash-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;              /* spacing between img and text */
  margin: 25px auto;
}

.cash-img {
  max-width: 200px;       /* make cash image bigger */
  height: auto;
}



