html {
  font-size: 2rem;
  text-align: center;
  margin: 15px;
  overflow: hidden;
}

.body_div {
  width: 100% vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

svg {
  fill: #045aaa;
}

.form_div input[type=text] {
  font-size: 1.7rem;
  margin: 16px 0;
}

.button_submit {
  background-color: #045aaa;
  border: none;
  color: white;
  padding: 16px 32px;
  font-size: 1.5rem;
  text-decoration: none;
  margin: 16px 0;
  cursor: pointer;
  width: 100%;
}

.search_result {
  font-size: 2rem;
}

.btn_back {
  background-color: #045aaa;
  border: none;
  color: white;
  padding: 16px 32px;
  font-size: 1.5rem;
  text-decoration: none;
  margin: 16px 0;
  cursor: pointer;
  max-width: 50%;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 1.3rem;
  }

  .form_div input[type=text] {
    font-size: 1.2rem;
    margin: 16px 0;
  }

  .button_submit {
    font-size: 1.1rem;
  }

}