
    
    
    body {
      color:#000000;
      background-color:#FFFFFF;
      background-image:url('Background Image');
      background-repeat:no-repeat;
    }
    a  { color:#0000FF; }
    a:visited { color:#800080; }
    a:hover { color:#008000; }
    a:active { color:#FF0000; }

    .banner {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 80%;
      height: auto;
    }
    
    -->
  
    body {
      font-family: Arial, sans-serif;
      padding: 10px;
    }

     .dropdown-row {
      display: flex;
      justify-content: center;   /* centers the dropdowns */
      gap: 10px;                 /* spacing between boxes */
      flex-wrap: wrap;           /* wrap on small screens */
      margin-top: 20px;
    }

    .dropdown-group {
      display: flex;
      flex-direction: column;
      align-items: center;       /* centers label + box */
    }

    label {
      font-weight: bold;
      margin-bottom: 5px;
    }

    select {
      padding: 8px;
      width: auto;          /* grows to fit content */
      min-width: 40px;      /* prevents tiny dropdown */
      border-radius: 6px;
	  border: none;              /* removes the lines */
      font-size: 14px;
    }

    .center {
      width: fit-content;
      margin: 0 auto;
      text-align: center;
    }
	      /* AUTO SIZE */

