body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
}
 
#map {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.mapboxgl-ctrl-geocoder {
  background-color: black;
  color: white;
  border-radius: 1rem 0 0rem 1rem;
}
 
.mapboxgl-ctrl-geocoder * {
  background-color: black !important;
  color: white !important;
  border-radius: 1rem;
}
 
.mapboxgl-ctrl-geocoder input:focus {
  outline: none;
}
 
.mapboxgl-popup-close-button {
  font-size: 1.25rem;
}
 
.mapboxgl-popup-content {
  background: linear-gradient(#e664642d, #9198e5b0);
  width: fit-content;
  outline: 2px solid black;
  color: white;
  backdrop-filter: blur(5px);
}
 
.mapboxgl-popup-tip {
  border-top-color: black !important;
  border-bottom-color: black !important;
}
 
/* make webkit scrollbar black and rounded */
::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f500;
}
 
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
 
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#e66464, #9198e5);
  cursor: grab;
}
 
input,
textarea,
button,
#description {
  background-color: black;
  border-radius: 5px;
  color: white;
  font-size: 0.75rem;
}
 
textarea {
  width: 95%;
  height: 5rem;
}
 
#name,
#email {
  width: 95%;
}
 
#submit {
  border-radius: 1rem;
  float: right;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0.5rem 0 0;
}
