.buttonCardParent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  margin: clamp(10px, 2vw, 20px);
  width: 100%;
}

.buttonCard {
  display: flex;
  flex-direction: column;
  padding: clamp(15px, 4vw, 40px);
  margin: 0;
  width: 100%;
  box-sizing: mainCard;
  align-items: center;
}

.buttonCard:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buttonCard p, .buttonCard h2 {
  flex-grow: 1;
}

.newPage {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 40%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.18), transparent 40%), #040404;
  font-size: large;
  font-family: "Barlow";
  color: white;
  border-color: rgb(,,);
  border-radius: 145px;
  padding: 10px 16px;
  margin: clamp(10px, 2vw, 20px);
  width: clamp(150px, 20vw, 300px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.newPage:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.subtext {
  margin: 0;
  font-size: 10px;
}

.center {
  text-align: center;
  justify-content: center;
  justify-items: center;
}

.mainCardParent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

  gap: 20px;
  margin: 20px;
}

.mainCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: clamp(15px, 4vw, 40px);
}
.buttonCard {
   display: flex;
  flex-direction: column;
  font-weight: bold;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 40%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.18), transparent 40%), #040404;
  border-radius: 10px;
  border: 2px solid var #d4af37;
  color: var(--color2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.mainCard, .equalCard {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 40%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.18), transparent 40%), #040404;
  border-radius: 10px;
  border: 2px solid var(--color1);
  color: var(--color2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.buttonCard, {
  border: 2px solid var #d4af37;
}

.equalCard {
  align-items: center;
  text-align: center;
  padding: clamp(15px, 4vw, 40px);
  width: clamp(300px, 30vw, 500px);
}

.generalButton {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: clamp(14px, 2vw, 20px);
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 40%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.18), transparent 40%), #040404;
  color: var(--color2);
  border-radius: 10px;
  border: 2px solid var(--color1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 15px;
  padding: clamp(15px, 4vw, 40px);
  gap: 0;
}

.generalButton:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buttonIcon {
  color: var(--color2);
}

.buttonLink, .generalButton {
  text-decoration: none;
}

.buttonLink {
  display: flex;
  flex: 0 1 300px;
  max-width: 300px;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
