body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 0 100px 0;
  background-color: #1c1c1c;
  color: #fff;
  overflow-x: hidden;
  font-size: 17px;
  animation: globalFadeIn 0.7s ease-out;
}

body {
  /* Override for body padding */
  padding-bottom: 0 !important;
}

@keyframes globalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Basic button styles */
button {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Footer styles */
.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1c1c1c;
  color: #fff;
  font-size: 14px;
  margin-top: 32px;
  margin-bottom: 32px;
  min-height: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer {
  /* Overrides for the footer */
  margin-bottom: 75px !important;
  padding-bottom: 50px !important;
  min-height: unset !important;
  position: relative !important; /* Fixed: was display: absolute !important; */
}
