h1 {
  text-align: center;
}

.container {
}

.search-bar {
  width: 500px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

input {
  padding: 4px 16px;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  font-size: 20px;
}

.suggestions {
  padding: 4px 16px;
  box-sizing: border-box;
  border: 1px solid #222222;
  box-shadow: 6px 6px 4px #aaaaaa;
  position: absolute;
  top: 66px;
  width: calc(100% - 48px);
}

.suggestion {
  text-align: left;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
}

.hide {
  display: none;
}
