body {
  font-family: 'Space Grotesk', sans-serif;
  margin: 20px;
  padding: 20px;
  background-color: #2A2829;
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 80px; /* Add space for fixed footer */
  min-height: calc(100vh - 190px); /* Ensure content takes at least full height minus header and footer */
}

a {
  color: #fff;
}

a:visited {
  color: #fff;
}

h1 {
  color: #ffffff;
  font-weight: 400;
}

h1 sup {
  font-size: medium;
}

h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 200;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E0E0DB;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#header h1 {
  font-size: 45px;
  margin: 0;
  text-align: left;
  color: #000000;
}

#header a {
  color: #000000;
  text-decoration: none;
}
#header a:visited {
  color: #000000;
}

#header img {
  height: 50px;
  width: auto;
  margin-left: auto;
}

button {
  text-align: center;
  background-color: #FFFFFF;
  color: #000000;
  padding: 15px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
}

form button:hover {
  background-color: #0288d1;
}

button:disabled,
button[disabled] {
  color: #FFFFFF;
  background-color: #727272;
  cursor: not-allowed;
}

p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 200;
}

li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 200;
}

#repid {
  font-size: 10px;
}

#centered-btn {
  display: block;
  margin: 0 auto;
}

a.button-link {
  text-decoration: none;
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E0E0DB;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#footer p {
  margin: 0;
  font-size: 12px;
  color: #000000;
  font-weight: 300;
}

#footer p:first-child {
  position: absolute;
  left: 20px;
}

#footer p:last-child {
  position: absolute;
  right: 20px;
}
#footer a {
  color: #000000;
  text-decoration: none;
}

#footer a:visited {
  color: #000000;
}

#footer a:hover {
  text-decoration: underline;
}