p {
  display: block;
  position: relative;
  top: 10px;
  bottom: 140px;
  width: auto;
  height: auto;
  text-align: center;
  font-family: inherit;
  font-weight: 500;
  line-height: 2;
  margin: 0 auto;
}

.custom-button {
  background-color: #f37321;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.custom-button:hover {
  background-color: #5f6062;
  transform: scale(1.05);
}

.custom-button:active {
  background-color: #00408d;
  transform: scale(0.95);
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.box {
  padding: 20px;
  margin: 10px;
  bottom: 5px;
  text-align: center;
  color: white;
  background-color: white;
  flex: 1 1 300px; /* Se ajusta a un mínimo de 300px */
}

.form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form input {
  width: 50%;
  height: 30px;
  margin: 0.5rem;
}

#black-text {
  color: #333333;
  font-family: "Raleway", Sans-serif;
  font-size: 25px;
  font-weight: bold;
}
#green-text {
  color: #028c50;
  font-family: "Raleway", Sans-serif;
  font-size: 25px;
  font-weight: bold;
}
