@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap");
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  font-family: "DM Sans", sans-serif;
  background-color: #fff;
}

button,
input,
span,
label {
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.app {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "form" "results";
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.app form {
  grid-area: form;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: auto;
  margin-bottom: 30px;
  height: 100%;
}
.app form .col {
  width: 100%;
}
.app form span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 1rem;
}
.app form input {
  width: 14rem;
  height: 40px;
  border-radius: 3px;
  padding: 2px 12px;
  margin-bottom: 14px;
  font-weight: normal;
  text-transform: capitalize;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.app form .button-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
  padding: 10px;
}
.app form .button-grid button {
  height: 40px;
  width: 300px;
  border: none;
  border-radius: 5px;
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}
.app form .button-grid button:disabled {
  background-color: rgb(184, 50, 50);
  cursor: not-allowed;
}
.app form .button-grid button[type=reset] {
  background-color: rgb(81, 79, 79);
}
.app .results {
  max-width: 100vw;
  overflow-x: hidden;
  grid-area: results;
  overflow: auto;
  height: 100%;
  padding-top: 10px;
  /* chips for the list elements */
}
.app .results .chips {
  max-width: inherit;
  width: 100%;
}
.app .results .chip > li {
  display: inline-block;
  padding: 0 15px;
  margin: 5px;
  height: 30px;
  font-size: 16px;
  /* line-height: 50px; */
  border-radius: 4px;
  color: white;
  background-color: black;
}
.app .results li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.app .results #results__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.app .results #results__container h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

hr {
  width: 100%;
  background-color: black;
  height: 2px;
}/*# sourceMappingURL=index.css.map */