html {
  height: 100%;
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-image: linear-gradient(180deg, #6699ff, #9933ff);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  color: white;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

.lookup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-input {
  font-size: 0.9rem;
}

.box {
  border-radius: 5px;
  max-width: 30%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px;
}

.data-text {
  font-size: 14px;
  text-align: left;
  padding: 2em;
  margin-left: 10px;
}

.input-btn {
  background-color: #5900dd;
  color: white;
  padding: 0.33rem 0.66rem;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  opacity: 0.6;
  transition: 0.3s;
}

.input-btn:hover {opacity: 1.2}