#top-bar {
  background: #010156;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around; 
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0;
  border-bottom: 1px solid #0011ff;
  font-family: 'Patrick Hand', cursive;
}

#top-bar > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  position: relative;
}

#top-bar i {
  position: relative;
  top: -5px;
}

h1 {
  font-size: 30px;
  color: white;
  margin-bottom: 10px;
  font-family: 'Patrick Hand', cursive;
  cursor: pointer;
}

#poi-container {
  position: relative;
  width: 90%;
  max-width: 800px;
}

#poi {
  background-color: black;
  border-radius: 5px;
  padding: 5px 40px;
  border: none;
  width: 100%;
  height: 50px;
  color: #11ff00;
  font-family: 'Patrick Hand', cursive;
  font-size: 20px;
  font-weight: lighter;
  text-align: center;
  outline: none;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 0px 5px 0px white;
}

#start-recording,
#stop-recording,
#search-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #0011ff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  background: none;
  border: none;
}

#start-recording,
#stop-recording {
  left: 0;
}

#stop-recording {
color: green;
}
#start-recording {
color: red;
}

#search-button {
  right: 0;
}

#search-button:hover {
  color: #00ff00;
}

#radius {
  background-color: black;
  color: white;
  position: fixed;
  top: 40px;
  right: 20px;
  width: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: auto;
  cursor: pointer;
  z-index: 99999;
  border: none;
  border-radius: 5px;
  text-align: center;
  font-family: "PT Serif", serif;
  font-size: 14px;
  box-shadow: 0 0 20px rgb(255, 255, 255, 0.2);
}



@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 600px) {
  #radius {
   
  }

  #top-bar {
    height: auto;
    padding: 10px 0;
  }

  #poi-container {
    width: 100%;
  }
}