.App {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: dimgrey;
}

.search {
  position: relative;
  margin: 50px;
  text-align: center;
}

.search input {
  position: absolute;
  top: 40px;
  right: 286px;
  font-size: 15px;
  width: 50%;
  padding: 12px 14px;
  border-radius: 14px;
  border: none;
  outline: none;
  z-index: 11;
}

.searchbody {
  position: absolute;
  border-radius: 14px;
  top: 60px;
  right: 286px;
  background-color: white;
  padding: 0px 14px;
  width: 50%;
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.searchbody div {
  margin: 30px 20px;
  text-align: left;
  color: rgb(77, 75, 75);
}
