body {
  margin: 0;
  padding: 0;
}

#construct h1 {
  font-size: 70px;
  margin-top: 15px;
  text-align: center;
}

#infos {
  display: flex;
  flex-direction: row;
}

#infos #card {
  display: flex;
  flex: 1;
  width: 50%;
  align-items: center;
  justify-content: center;
}

#infos #card img {
  max-width: 100%;
  max-height: 100%;
}

#infos #contact {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 50%;
  padding: 20px;
}

#infos #contact form {
  display: flex;
  flex-direction: column;
}

#infos #contact form button {
  margin-top: 20px;
}

#infos #contact form textarea {
  resize: none;
}

@media screen and (max-width: 1353px) {
  #construct h1 {
    font-size: 50px;
    margin-top: 15px;
    text-align: center;
  }

  #infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 682px) {
  #infos #card {
    width: 90%;
  }

  #infos #contact {
    width: 90%;
  }
}

@media screen and (max-width: 413px) {
  #construct h1 {
    font-size: 42px;
  }
}