html,
head,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  font-family: Arial, Helvetica, sans-serif;
  margin: inherit;
}

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  z-index: 99;
}

.header {
  font-size: 22px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(34, 139, 34, 0.493);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 87.8vh;
}

.main__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1%;
  width: 300px;
}

.main__search-field {
  font-size: 16px;
  height: 22px;
  padding: 15px 8px;
  border-radius: 7px;
  border-color: rgba(0, 0, 0, 0.2);
  outline: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4%;
}

.main__submit-btn {
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6);
  outline: rgba(0, 0, 0, 0.7);
  border-radius: 7px;
  padding: 6px;
  margin-bottom: 4%;
}

.main__text-area {
  font-size: 24px;
  text-align: center;
  height: 100px;
  padding: 15px 8px;
  border-radius: 7px;
  border-color: rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.7);
  outline: rgba(0, 0, 0, 0.7);
  width: 295px;
  cursor: default;
}
/*# sourceMappingURL=scratch-pad.css.map */