h1 {
  display: flex;
  justify-content: center;
}

.contact-grid {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
}

.special-WA-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.contact-title {
    margin-bottom: 4px;
    font-weight: bold;
    border-bottom: 1px solid #bbb;
    font-size: 1.5em;
}

main form {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 20px;
    max-width: 70%;
    margin: auto;
}

.box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-top: 3px;
    margin-bottom: 3px;
}

label {
  display: block;
  margin-right: 4px;
}

main input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
  font-size: 16px;
}

main textarea {
  resize: none;
}

main input[type="submit"] {
  background-color: #3071a9;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

main input[type="submit"]:hover {
  background-color: #26608e;
}


/* -----------------------------codigo para hacer la pagina responsiva de escritorio---------------------------- */
@media screen and (min-width: 1051px) {

  .contact-grid {
    flex-direction: row;
  }
}

/* -----------------------------codigo para hacer la pagina responsiva de celular---------------------------- */
@media screen and (max-width: 1050px) {

  .contact-grid {
    flex-direction: column;
  }

}