:root {
  --ctrl-font: 1em;
  --ctrl-height: calc(2 * 0.75em + var(--ctrl-font)); /* 2.5em */
  --ctrl-radius: calc(var(--ctrl-height) / 2);
}

.hero-form {
  display: flex;
  align-items: center; 
  gap: 0.5em;
}

.form-control {
  font: var(--ctrl-font) sans-serif;
  height: var(--ctrl-height);
  padding: 0 1em;
  border: 2px solid #333;
  border-radius: var(--ctrl-radius);
  box-sizing: border-box;
  flex: 1;
    /* center the text inside the whole control */
  text-align: center;
  /* kill the default left-padding so centering is accurate */
  padding-left: 0;
  padding-right: 0;
}

.hero-form button {
  /* reset the old margin */
  margin: 0;  

  font: var(--ctrl-font) sans-serif;
  height: var(--ctrl-height);
  padding: 0 1.5em;
  border-radius: var(--ctrl-radius);
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
}




/* Hide the native button so its text (and padding) won’t push your label */
.form-control::-webkit-file-upload-button {
  visibility: hidden;
}

/* Re-inject your own centered text */
.form-control::before {
  font: var(--ctrl-font) sans-serif;
  height: var(--ctrl-height);
  padding: 0 1em;
  border: 2px solid #333;
  border-radius: var(--ctrl-radius);
  box-sizing: border-box;
  flex: 1;
}

/* If you want the selected filename to show after picking a file… */
.form-control:valid::before {
  content: attr(data-file-name);
}

/* hook JS to update data-file-name when a file is picked */




body {
	  background: rgb(240, 235, 230);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: sans-serif;
      text-align: center;
	  margin-left: 25%;
	  margin-right: 25%;
    }
button {
      margin-top: 1em;
      padding: 0.75em 1.5em;
      font-size: 1em;
    }
.link {
	font-size: 16px;
	font-family: "Georgia", "Courier";
	color: brown
}
.Title {
	font-family: "Calibri", sans-serif;
	text-align: left;
	font-size: 58px;
	font-weight: bold; 
	line-height: 80px;  
	margin-top: 8px;
	padding:0.5em 0.25em 0.5em 0.25em; 
	color: 	black
}
.CUPSHOW {
	text-align: left;
	font-size: 48px;
	font-weight: bold; 
	line-height: 80px;  
	margin-top: 8px;
	padding:0.5em 0.25em 0.5em 0.25em; 
	color: 	black;
	background: none
}
table{
	margin-bottom: 1.8em;
}
