@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "rubik", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  text-align: center;
  font-size: 1em;
}

main {
  height: 30vh;
  padding: 2em;
  position: relative;
  background: url(./images/pattern-bg-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  color: white;
}

h1 {
  font-size: 1.7em;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

input {
  width: 90;
  max-width: 700px;
  border: NONE;
  border-radius: 10px 0px 0px 10px;
  font-family: "rubik";
  font-size: 1em;
  padding: 1em;
  margin: none;
  cursor: pointer;
}

input:focus {
  border: none;
}

button {
  margin: none;
  padding: 1.3em 1.5em;
  border-radius: 0 10px 10px 0;
  background-color: hsl(0, 0%, 17%);
  border: 0;
  cursor: pointer;
}

.pop-up {
  background-color: rgb(253, 252, 250);
  padding: 2em;
  margin: -11em auto 2em;
  width: 70%;
  max-width: 900px;
  border-radius: 10px;
  color: hsl(0, 0%, 58%);
  font-size: 0.5em;
  box-shadow: 0 1px 5px rgb(227, 225, 225);
  position: relative;
  z-index: 20;
  display: grid;
  gap: 1em;
}
.pop-up h2 {
  text-transform: uppercase;
}
.pop-up p {
  font-size: 1.5em;
  font-weight: 500;
  padding: 0;
  margin: 0.1em;
  color: rgb(49, 48, 48);
  text-transform: capitalize;
}

#map {
  height: 70vh;
  position: relative;
  z-index: 1;
  margin-top: -23em;
}

.leaflet-container {
  z-index: 0 !important;
}

@media (min-width: 425px) {
  .pop-up {
    width: 60%;
    margin: -13em auto 2em;
  }
}
@media (min-width: 768px) {
  form input {
    width: 20em;
  }
  .pop-up {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin-top: -15em;
    max-width: 1440px;
    width: 90%;
    align-items: center;
    padding: 2em auto;
  }
  .pop-up p {
    margin: 0;
    padding: 0;
    font-weight: 600;
  }
  .pop-up .details {
    border-right: 2px solid rgb(209, 205, 205);
    text-align: left;
    padding: 0 0 0 5px;
  }
  .pop-up .detail {
    text-align: left;
  }
  #map {
    margin-top: -5em;
  }
}/*# sourceMappingURL=styles.css.map */