body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

.searchBox {
  width: 100%;
  margin: 70px 0;
  border: 3px solid #1e252c;
}

.header {
  background: #1e252c;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.header h1 {
  text-transform: uppercase;
  color: white;
  margin: 0;
  margin-bottom: 8px;
}

#value {
  border: none;
  background: #FFFFFF;
  padding: 6px;
  font-size: 18px;
  width: 80%;
  border-radius: 6px;
  color: black;
}

#value:focus {
  outline: none;
}

.container {
  background: #FFFFFF;
  padding: 1%;
}

.item {
  margin: 3% 0px;
  display: flex;
  align-items: center;
}

.icon {
  width: 25px;
  height: 25px;
  background: gray;
  color: white;
  font-size: 15px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  margin-right: 8px;
}

.name {
  font-size: 17px;
  font-weight: 470;
  color: #333;
}



