/* Media query for big screens */
@media (min-width: 781px) {

.contactForm {
    margin: 20px;
    background-color: #F0FDF4;
    padding: 20px;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
    border: 1px solid rgb(204, 204, 204);
}
.contactFormArea h2 {
    margin-left: 20px;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.formUpperInputs {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.formUpperInputs input {
    box-sizing: border-box; /* Includes padding and border in the total width */
    background-color: #FFFFFF;
    border: 1px solid rgb(201, 200, 200);
    width: 210px;
    border-radius: 4px;
    height: 35px;
    padding: 8px;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}
.formTextArea textarea {
    box-sizing: border-box; /* Includes padding and border in the total width */
    background-color: #FFFFFF;
    border: 1px solid rgb(201, 200, 200);
    margin-bottom: 10px;
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    resize: none;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}
.formTextArea textarea {
    width: 100%;
}


.button1111 {
  font-family: "Maven Pro", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 20px;
  padding: 8px;
  width: 110px;
  background: #F5D042;
  border-radius: 4px;
  color: black;
  user-select: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.button1111:hover {
    font-weight: bolder;
      box-shadow:
    3px 3px 0 rgba(0,0,0,0.35);
}
#resultArea {
    font-family: "Ubuntu";
    margin-top: 10px;
}
.button1111:active {
  transform: translateY(2px);
    box-shadow:
    2px 2px 0 rgba(0,0,0,0.25);
}

}
/* Media query for small screens */
@media (max-width: 780px) {

    .contactForm {
    margin: 10px;
    background-color:#F0FDF4;
    padding: 8px;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
    border: 1px solid rgb(204, 204, 204);
}
.contactFormArea h2 {
    margin-left: 15px;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.formUpperInputs {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
}
.formUpperInputs input {
    box-sizing: border-box; /* Includes padding and border in the total width */
    background-color: #FFFFFF;
    border: 1px solid rgb(201, 200, 200);
    width: 100%;
    border-radius: 4px;
    height: 35px;
    padding: 8px;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}
.formTextArea textarea {
    box-sizing: border-box; /* Includes padding and border in the total width */
    background-color: #FFFFFF;
    border: 1px solid rgb(201, 200, 200);
    margin-bottom: 10px;
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    resize: none;
    font-family: "Ubuntu", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}
.formTextArea textarea {
    width: 100%;
}


.button1111 {
  font-family: "Maven Pro", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 20px;
  padding: 8px;
  width: 110px;
  background: #F5D042;
  border-radius: 4px;
  color: black;
  user-select: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.button1111:hover {
    font-weight: bolder;
      box-shadow:
    3px 3px 0 rgba(0,0,0,0.35);
}
#resultArea {
    font-family: "Ubuntu";
    margin-top: 10px;
}
.button1111:active {
  transform: translateY(2px);
    box-shadow:
    2px 2px 0 rgba(0,0,0,0.25);
}
}
