#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#title_contact {
    color: blue;
}
#container_contact {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: row;
}
#form_contact {
    width: 70%;
}

input[type=text] {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px 25px;
    margin: 8px 0;
  }
  #matter {
      width: 100%;
      height: 200px;
      display: flex;
      flex-direction: column;
  }
  input[type=submit] {
    width: 100%;
    background-color: blue;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
#photo_contact {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#text_contact {
    padding: 20px 0 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

}
#mapa {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    #container_contact {
        flex-direction: column;
    }
    #photo_contact {
        display: none;
    }
}